摘要: Python 初学者的最佳学习资源http://www.iteye.com/news/31032推荐8款HTML5相关的特殊效果http://www.iteye.com/topic/1141973the5fire的技术博客http://www.the5fire.com/Python笔记(7)shel... 阅读全文
posted @ 2015-10-21 15:54 小猴子学代码 阅读(130) 评论(0) 推荐(0) 编辑
摘要: Rachel-Zhanghttp://blog.csdn.net/abcjennifer/article/category/1148648刘佳翰http://blog.csdn.net/liujiahan629629?viewmode=contents听我说说我的博客: 月访问量过万的个人IT博客的... 阅读全文
posted @ 2015-10-21 09:13 小猴子学代码 阅读(227) 评论(0) 推荐(0) 编辑
摘要: echoprintf: 由于各个版本的echo有差异,语法标准不统一,建议在平常使用输出的时候使用printf,但是一定要记得自己显式的添加换行符"\n",这也是printf与echo的最大差异。 阅读全文
posted @ 2015-09-09 13:16 小猴子学代码 阅读(144) 评论(0) 推荐(0) 编辑
摘要: 参考链接http://lingshaohuprose.blog.163.com/blog/static/169579782201232505248560/http://blog.chinaunix.net/uid-29641016-id-4777902.html细谈select()函数http://... 阅读全文
posted @ 2015-08-12 22:40 小猴子学代码 阅读(118) 评论(0) 推荐(0) 编辑
摘要: 算法九章算法http://new.ninechapter.com/结构之法 算法之道http://blog.csdn.net/v_JULY_vhttp://download.csdn.net/detail/v_july_v/6694053Python学习网站http://woodpecker.org... 阅读全文
posted @ 2015-04-10 16:15 小猴子学代码 阅读(292) 评论(0) 推荐(0) 编辑
摘要: 代码#include #define SIZE 51struct node{ int x;//横坐标 int y;//纵坐标 int f;//父亲在队列中得编号 int s;//步数};int main(){ struct node que[SIZE*SIZE+1];/... 阅读全文
posted @ 2015-03-31 23:12 小猴子学代码 阅读(184) 评论(0) 推荐(0) 编辑
摘要: 数字三角形问题把位置(i,j)看成一个状态,然后定义状态(i,j)的指标函数d(i,j):从位置(i,j)出发时能得到的最大和。递推计算:int i,j;//边界值处理for(j=1;j=1;i--) for(j = 1; j= 0,判断该节点是否已经被计算过if(result[i][j] >= 0... 阅读全文
posted @ 2015-03-31 18:09 小猴子学代码 阅读(133) 评论(0) 推荐(0) 编辑
摘要: 代码: 1 #include 2 #include 3 #include 4 5 typedef struct node 6 { 7 int x; 8 int y; 9 int s; 10 }node; 11 12 int N,M; 13 int ... 阅读全文
posted @ 2015-03-23 14:27 小猴子学代码 阅读(142) 评论(0) 推荐(0) 编辑
摘要: 代码:#include #include int T,t,N,i;#define LOG 1//调试日志void Log(int* data,int flag,int i,int j){#ifdef LOG if(flag == 1) { for(int k=0;k rig... 阅读全文
posted @ 2015-03-18 16:58 小猴子学代码 阅读(132) 评论(0) 推荐(0) 编辑
摘要: http://www.cnblogs.com/Kevin_z/archive/2010/03/05/1679031.htmlhttp://blog.csdn.net/zhengdan66/article/details/5553635 阅读全文
posted @ 2015-03-18 11:51 小猴子学代码 阅读(81) 评论(0) 推荐(0) 编辑