摘要: /************************************************************************* > File Name: StaticSearchTable.c > Author: > Mail: > Created Time: Fri 21 Dec 2018 03:49:17 PM CST ******... 阅读全文
posted @ 2018-12-21 16:30 自强· 阅读(1242) 评论(0) 推荐(0) 编辑
摘要: 静态 时间快 动态方法 阅读全文
posted @ 2018-12-21 14:27 自强· 阅读(197) 评论(0) 推荐(0) 编辑
摘要: tar zxvf lrzsz-0.12.20.tar.gz 解压安装包 下载地址:链接:https://pan.baidu.com/s/1KMS1QlyOhpXiYeaWdNBAyw 提取码:08ae cd lrzsz-0.12.20 ./configure --prefix=/usr/local/ 阅读全文
posted @ 2018-12-21 14:08 自强· 阅读(702) 评论(0) 推荐(0) 编辑
摘要: 转自:https://blog.csdn.net/qq_31029351/article/details/53311285 阅读全文
posted @ 2018-12-21 13:57 自强· 阅读(1432) 评论(0) 推荐(0) 编辑
摘要: //1.斐波那契数列 int fibo(int n) { if(n==1 || n==2) { return 1; } else { return fibo(n-1) + fibo(n-2); } } //2.阶乘 int fac(int n) { if(n==1 || n==0) { ... 阅读全文
posted @ 2018-12-21 11:27 自强· 阅读(1980) 评论(0) 推荐(0) 编辑