Given a binary tree, return the level order traversal of its nodes' values. (ie, from left to right, level by level).For example: Given binary tree {3...
分类:
其他好文 时间:
2014-07-26 14:03:16
阅读次数:
174
题目:Given a singly linked list L: 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.F....
分类:
编程语言 时间:
2014-07-26 09:51:47
阅读次数:
215
周氏一族,整理技术文档,给下一代留点教程......采用系统默认最下化安装的同学都知道,基本上home的分区大得要命,可现实中,我们home不需要那么大,我们的大部分数据是放在/目录下,因此需要调整大小,不然在生产环境当中,容易导致硬盘分区溢出,没有写入权限。先来看看我的..
分类:
系统相关 时间:
2014-07-26 03:27:07
阅读次数:
621
巧用linux服务器下的/dev/shm/来释放磁盘的压力浏览:646|更新:2013-06-18 18:08|标签:磁盘tmpfs是Linux/Unix系统上的一种基于内存的文件系统。tmpfs可以使用您的内存或swap分区来存储文件。由此可见,tmpfs主要存储暂存的文件。它有如下2个优势 : ...
分类:
系统相关 时间:
2014-07-25 18:52:11
阅读次数:
265
Given a binary tree, return the inorder traversal of its nodes' values.
For example:
Given binary tree {1,#,2,3},
比较简单,就是转化成中序遍历即可,访问顺序是中序遍历左子树,根节点,中序遍历右子树
Python编程的时候需要注意,要在返回单一数字的时候加...
分类:
编程语言 时间:
2014-07-25 11:07:51
阅读次数:
221
学习一种语言: 最快的方法,就是研究其源代码。
从源代码中能够体会到各种经典的思想!
欣赏一下:
例如:
我们在写一些 冒泡和选择排序的时候用的 交换:
/**
* Swaps x[a] with x[b].
*/
private static void swap(Object[] x, int a, int b)...
分类:
编程语言 时间:
2014-07-25 10:57:31
阅读次数:
216
题目: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 sin....
分类:
编程语言 时间:
2014-07-24 10:01:23
阅读次数:
223
Surprising Strings
Time Limit: 1000MS
Memory Limit: 65536K
Total Submissions: 5783
Accepted: 3792
Description
The D-pairs of a string of letters are the ordered pai...
分类:
其他好文 时间:
2014-07-23 20:59:05
阅读次数:
288
如果你当前使用的Ubuntu系统,无论是虚拟机还是实体机,没有交换分区或交换分区空间不足,可以为其设置交换空间。
本文提供的是一种设置交换空间的简单方法。
如若转载,请注明博文地址及原作者(RisingWonderland)。
为何要在操作系统安装完毕后设置交换空间?
1、本文与《Windows8.1安装Ubuntu14.04双系统参考教程及双硬盘注意事项》这篇文章有直接关联。在这篇参...
分类:
其他好文 时间:
2014-07-23 17:11:11
阅读次数:
242
Add Two NumbersYou are given two linked lists representing two non-negative numbers. The digits are stored in reverse order and each of their nodes co...
分类:
其他好文 时间:
2014-07-23 16:51:51
阅读次数:
251