2014年9月5日

leetcode - Reverse Nodes in k-Group

摘要: Given a linked list, reverse the nodes of a linked listkat a time and return its modified list.If the number of nodes is not a multiple ofkthen left-o... 阅读全文

posted @ 2014-09-05 12:29 laihaiteng 阅读(187) 评论(0) 推荐(0) 编辑

leetcode - Swap Nodes in Pairs

摘要: Given a linked list, swap every two adjacent nodes and return its head.For example,Given1->2->3->4, you should return the list as2->1->4->3.Your algor... 阅读全文

posted @ 2014-09-05 11:05 laihaiteng 阅读(169) 评论(0) 推荐(0) 编辑

leetcode - Add Two Numbers

摘要: You are given two linked lists representing two non-negative numbers. The digits are stored in reverse order and each of their nodes contain a single ... 阅读全文

posted @ 2014-09-05 10:24 laihaiteng 阅读(122) 评论(0) 推荐(0) 编辑

2014年9月4日

leetcode - Rotate List

摘要: Given a list, rotate the list to the right bykplaces, wherekis non-negative.For example:Given1->2->3->4->5->NULLandk=2,return4->5->1->2->3->NULL.这个题目主... 阅读全文

posted @ 2014-09-04 12:09 laihaiteng 阅读(159) 评论(0) 推荐(0) 编辑

2014年9月2日

leetcode - Copy List with Random Pointer

摘要: A linked list is given such that each node contains an additional random pointer which could point to any node in the list or null.Return a deep copy ... 阅读全文

posted @ 2014-09-02 09:33 laihaiteng 阅读(123) 评论(0) 推荐(0) 编辑

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) 编辑

2014年8月26日

leetcode - Reverse Linked List II

摘要: 题目:Reverse Linked List IIReverse a linked list from positionmton. Do it in-place and in one-pass.For example:Given1->2->3->4->5->NULL,m= 2 andn= 4,ret... 阅读全文

posted @ 2014-08-26 12:03 laihaiteng 阅读(114) 评论(0) 推荐(0) 编辑

leetcode - Partition List

摘要: 题目:Partition ListGiven a linked list and a valuex, partition it such that all nodes less thanxcome before nodes greater than or equal tox.You should p... 阅读全文

posted @ 2014-08-26 11:54 laihaiteng 阅读(112) 评论(0) 推荐(0) 编辑

2014年7月29日

[Cocos2d-x + c++]Tableview使用总结

摘要: Tableview为我们提供了列表功能,在游戏中可以用来呈现物品,道具等,效果如下图:在上图中,有两个列表,一个是水平方向的,一个是竖直方向的,该效果图出自cocos2d-x自带的例子,里面有相关的代码,可以自行查阅,这里我只记录一下相关接口,以便日后使用: 1 #include "cocos2d.... 阅读全文

posted @ 2014-07-29 16:52 laihaiteng 阅读(776) 评论(0) 推荐(0) 编辑

导航