码迷,mamicode.com
首页 >  
搜索关键字:make    ( 11169个结果
[LeetCode] Bulls and Cows
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
Linux学习之Makefile文件的编写
转自:http://goodcandle.cnblogs.com/archive/2006/03/30/278702.html目的:基本掌握了make的用法,能在Linux系统上编程。环境:Linux系统,或者有一台Linux服务器,通过终端连接。一句话:有Linux编译环境。准备:准备三个文件:f...
分类:系统相关   时间:2015-10-31 00:19:50    阅读次数:273
why hdfs's default block size is 128MB
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
Get a handle on PHP Handlers
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 2014.07 makefile分析 - 其他Cortex系列
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
c 链表
#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
《点石成金:访客至上的Web和可用性设计秘笈(原书第3版)》--- 读书笔记
这是一本关于界面设计的书, 它的英语书名是“Don't make me think”。 这是一本小薄书, 作者语言诙谐幽默,形象生动的阐述了我们应该如何设计我们的页面(网页, 海报, 手机应用, 报纸排版等) 最重要的就是: 简洁! Don‘t make me think! 如果你现在在急...
分类:Web程序   时间:2015-10-29 21:44:56    阅读次数:251
使用Loader实时查询本地数据库用法
在看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
android emulator setting & configuation
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
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!