2015年4月30日
摘要: Isomorphic Strings2015.4.30 15:54Given two stringssandt, determine if they are isomorphic.Two strings are isomorphic if the characters inscan be repla... 阅读全文
posted @ 2015-04-30 16:03 zhuli19901106 阅读(278) 评论(0) 推荐(0) 编辑
摘要: Count Primes2015.4.30 15:51Count the number of prime numbers less than a non-negative number,nSolution: Sieve of Eratosthenes.Accepted code: 1 // 2CE... 阅读全文
posted @ 2015-04-30 15:53 zhuli19901106 阅读(180) 评论(0) 推荐(0) 编辑
摘要: Remove Linked List Elements2015.4.30 15:00Remove all elements from a linked list of integers that have valueval.ExampleGiven:1 --> 2 --> 6 --> 3 --> 4... 阅读全文
posted @ 2015-04-30 15:04 zhuli19901106 阅读(412) 评论(0) 推荐(0) 编辑