This problem seems to be easy at the first glance, especially the problem gives a too much simpler example. Make sure you understand the problem by ma...
分类:
其他好文 时间:
2015-10-31 20:03:00
阅读次数:
245
#include #include typedef struct node{ int num; struct node* next;}node;node *head = NULL;node *make_node(int data){ node *p = (...
分类:
其他好文 时间:
2015-10-31 18:25:30
阅读次数:
201
转自:http://goodcandle.cnblogs.com/archive/2006/03/30/278702.html目的:基本掌握了make的用法,能在Linux系统上编程。环境:Linux系统,或者有一台Linux服务器,通过终端连接。一句话:有Linux编译环境。准备:准备三个文件:f...
分类:
系统相关 时间:
2015-10-31 00:19:50
阅读次数:
273
A quick calculation shows that if the seek time is around 10 ms and the transfer rate is 100 MB/s, to make the seek time 1% of the transfer time, we n...
分类:
其他好文 时间:
2015-10-31 00:18:58
阅读次数:
250
PHP Handlers? mod_php? FPM? How do we make sense of the inner workings of PHP outside of our lines of code? We know we can run PHP on the server to bu...
分类:
Web程序 时间:
2015-10-30 20:37:08
阅读次数:
281
uboot的官网可以通过谷歌搜索得到,显示结果第一个链接就是。官网::http://www.denx.de/wiki/U-Bootftp下载:ftp://ftp.denx.de/pub/u-boot/本文以uboot 2014.07为例,一般第一步总是类似这样:make smdkc100_confi...
分类:
其他好文 时间:
2015-10-30 18:33:02
阅读次数:
235
#include #include int length=0;struct ListNode { int val; struct ListNode *next;};void make(struct ListNode* &list){ struct ListNode *tail=...
分类:
其他好文 时间:
2015-10-30 12:11:33
阅读次数:
243
这是一本关于界面设计的书, 它的英语书名是“Don't make me think”。 这是一本小薄书, 作者语言诙谐幽默,形象生动的阐述了我们应该如何设计我们的页面(网页, 海报, 手机应用, 报纸排版等) 最重要的就是: 简洁! Don‘t make me think! 如果你现在在急...
分类:
Web程序 时间:
2015-10-29 21:44:56
阅读次数:
251
在看Android的文档时,看到了这么一个东西: Loader究竟是什么东西呢?Introduced in Android 3.0, loaders make it easy to asynchronously load data in an activity or fragment. Loader...
分类:
数据库 时间:
2015-10-29 18:12:51
阅读次数:
342
In order to make the Android emulator run faster and be more responsive, you can configure it to take advantage of hardware acceleration, using a combination of configuration options, specific Andr...
分类:
移动开发 时间:
2015-10-28 09:34:59
阅读次数:
257