2014年9月1日

leetcode - Remove Duplicates from Sorted List II

摘要: Given a sorted linked list, delete all nodes that have duplicate numbers, leaving onlydistinctnumbers from the original list.For example,Given1->2->3-... 阅读全文

posted @ 2014-09-01 11:47 laihaiteng 阅读(110) 评论(0) 推荐(0) 编辑

leetcode - Insertion Sort List

摘要: 题目:Insertion Sort ListSort a linked list using insertion sort.题目比较简单,就是对链表进行插入排序个人思路:1,用插入排序的方法来解就行,注意链表的处理,可以给原链表加个头结点来使得处理统一(我的代码没有加,懒得改了)代码: 1 #inc... 阅读全文

posted @ 2014-09-01 11:31 laihaiteng 阅读(130) 评论(0) 推荐(0) 编辑

导航