码迷,mamicode.com
首页 >  
搜索关键字:appear    ( 1294个结果
Remove Duplicates from Sorted List
Given a sorted linked list, delete all duplicates such that each element appear onlyonce.For example,Given1->1->2, return1->2.Given1->1->2->3->3, retu...
分类:其他好文   时间:2014-11-14 10:29:38    阅读次数:157
Binary String Matching
描述Given two strings A and B, whose alphabet consist only ‘0’ and ‘1’. Your task is only to tell how many times does A appear as a substring of B? For ...
分类:其他好文   时间:2014-11-13 20:39:39    阅读次数:139
leetcode-Remove Duplicates from Sorted Array
leetcode-Remove Duplicates from Sorted Array  Given a sorted array, remove the duplicates in place such that each element appear only once and return the new length. Do not allocate extra spac...
分类:其他好文   时间:2014-11-12 16:39:30    阅读次数:197
Remove Duplicates from Sorted Array
Remove Duplicates from Sorted ArrayGiven a sorted array, remove the duplicates in place such that each element appear onlyonceand return the new lengt...
分类:其他好文   时间:2014-11-11 12:22:39    阅读次数:144
[LeetCode]Remove Duplicates from Sorted List
Given a sorted linked list, delete all duplicates such that each element appear only once. For example, Given 1->1->2, return 1->2. Given 1->1->2->3->3, return 1->2->3. /** * Definition for sin...
分类:其他好文   时间:2014-11-10 10:07:22    阅读次数:156
[LeetCode] Remove Duplicates from Sorted List
Given a sorted linked list, delete all duplicates such that each element appear onlyonce.For example,Given1->1->2, return1->2.Given1->1->2->3->3, retu...
分类:其他好文   时间:2014-11-09 20:51:20    阅读次数:222
Remove Duplicates from Sorted List
Remove Duplicates from Sorted ListGiven a sorted linked list, delete all duplicates such that each element appear onlyonce.For example,Given1->1->2, r...
分类:其他好文   时间:2014-11-09 00:49:14    阅读次数:173
Remove Duplicates from Sorted List (链表)
Given a sorted linked list, delete all duplicates such that each element appear onlyonce.For example,Given1->1->2, return1->2.Given1->1->2->3->3, retu...
分类:其他好文   时间:2014-11-06 19:29:56    阅读次数:149
Remove Duplicates from Sorted Array
Given a sorted array, remove the duplicates in place such that each element appear onlyonceand return the new length.Do not allocate extra space for a...
分类:其他好文   时间:2014-11-06 16:34:26    阅读次数:183
Remove Duplicates from Sorted Array(参考)
Given a sorted array, remove the duplicates in place such that each element appear onlyonceand return the new length.Do not allocate extra space for a...
分类:其他好文   时间:2014-11-04 12:28:18    阅读次数:177
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!