Given a sorted linked list, delete all nodes that have duplicate numbers, leaving only distinct numbers from the original list.
For example,
Given
1->2->3->3->4->4->5, return
1->2->5.
Given
1...
分类:
其他好文 时间:
2014-11-04 22:55:40
阅读次数:
300
TreeView控件显示数据库,Nodes集合的Add方法.Treeview控件的Nodes集合包含多个子节点,节点也可以包含另外的节点.通过节点的backcolor属性设置背景色.具体代码测试:usingSystem;usingSystem.Collections.Generic;usingSystem.ComponentModel;usingSystem.Data;usingSystem.Drawi..
分类:
数据库 时间:
2014-11-04 15:21:14
阅读次数:
216
Given a singlylinked listL:L0→L1→…→Ln-1→Ln,reorder it to:L0→Ln→L1→Ln-1→L2→Ln-2→…You must do this in-place without altering the nodes' values.For examp...
分类:
其他好文 时间:
2014-11-04 14:34:54
阅读次数:
155
Balancing Act
Time Limit: 1000MS
Memory Limit: 65536K
Total Submissions: 9143
Accepted: 3797
Description
Consider a tree T with N (1 <= N <= 20,000) nodes numbered 1......
分类:
其他好文 时间:
2014-11-03 13:07:38
阅读次数:
167
Merge two sorted linked lists and return it as a new list. The new list should be made by splicing together the nodes of the first two lists.1,注意从新定义l...
分类:
其他好文 时间:
2014-11-03 08:55:40
阅读次数:
163
Given a sorted linked list, delete all nodes that have duplicate numbers, leaving onlydistinctnumbers from the original list.For example,Given1->2->3-...
分类:
其他好文 时间:
2014-11-02 13:41:39
阅读次数:
168
Given a linked list, reverse the nodes of a linked list k at a time and return its modified list.
If the number of nodes is not a multiple of k then left-out nodes in the end should remain as it is.
...
分类:
其他好文 时间:
2014-11-02 09:27:14
阅读次数:
276
Given a binary tree, return thelevel ordertraversal of its nodes' values. (ie, from left to right, level by level).For example:Given binary tree{3,9,2...
分类:
其他好文 时间:
2014-11-02 07:06:13
阅读次数:
195
Given a binary tree, return thebottom-up level ordertraversal of its nodes' values. (ie, from left to right, level by level from leaf to root).For exa...
分类:
其他好文 时间:
2014-11-02 07:04:55
阅读次数:
202
Given a binary tree, return thelevel ordertraversal of its nodes' values. (ie, from left to right, level by level).For example:Given binary tree{3,9,2...
分类:
其他好文 时间:
2014-11-02 07:01:30
阅读次数:
210