上一页 1 ··· 47 48 49 50 51 52 53 54 55 ··· 68 下一页
摘要: 单线程运行时间: 多线程运行时间; 代码: 阅读全文
posted @ 2018-01-24 12:15 喵小喵~ 阅读(1040) 评论(0) 推荐(0) 编辑
摘要: 一.准备工作: sqlite3工具集:链接:https://pan.baidu.com/s/1mjufXZa 密码:2ui7 安装步骤: 2.添加sqlite3.exe的环境变量 这里是把sqlite3.exe放在C盘根目录,所以这样添加系统变量 添加好以后,打开cmd,输入sqlite3,如果出现 阅读全文
posted @ 2018-01-24 10:30 喵小喵~ 阅读(936) 评论(0) 推荐(0) 编辑
摘要: 1.自己实现三个常用函数 strlen,strcpy,strstr 自己实现strstr函数,如果找到返回首地址,找不到则返回NULL 自己实现strlen函数 自己实现strcpy函数 2.字符串的排序以及自己实现strcmp 字符串的排序调用qsort 字符串的排序,冒泡法 自己实现strcmp 阅读全文
posted @ 2018-01-23 21:03 喵小喵~ 阅读(260) 评论(0) 推荐(0) 编辑
摘要: 1 #include 2 #include 3 #include 4 5 //随机初始化数组 6 void fill(int *a,int n) 7 { 8 time_t ts; 9 unsigned int num = time(&ts); 10 srand(num); 11 for (int i = 0; i *pint2) 37 ... 阅读全文
posted @ 2018-01-23 19:11 喵小喵~ 阅读(373) 评论(0) 推荐(0) 编辑
摘要: 模拟代码进入过程: main.cpp 1 #include <iostream> 2 #include "AppDelegate.h" 3 #include "CCApplication.h" 4 #include "CCApplicationProtocol.h" 5 using namespac 阅读全文
posted @ 2018-01-23 17:47 喵小喵~ 阅读(257) 评论(0) 推荐(0) 编辑
摘要: 1.Apache的安装 地址:链接:https://pan.baidu.com/s/1kWdSWwZ 密码:nuqo 2.在相应路径下写html如图所示 new.html代码: 3.cgi路径: cgi代码 运行效果: 点击post后: 阅读全文
posted @ 2018-01-23 16:20 喵小喵~ 阅读(178) 评论(0) 推荐(0) 编辑
摘要: 运行截图: 阅读全文
posted @ 2018-01-20 14:44 喵小喵~ 阅读(121) 评论(0) 推荐(0) 编辑
摘要: 1 #include 2 #include 3 4 //需要排序的数组 5 char str[10] = "123"; 6 7 //交换两个数据 8 void swap(char *p1, char *p2) 9 { 10 char tmp = *p1; 11 *p1 = *p2; 12 *p2 = tmp; 13 } 14 15 //全排列... 阅读全文
posted @ 2018-01-19 19:15 喵小喵~ 阅读(220) 评论(0) 推荐(0) 编辑
摘要: 一、开发环境 开发环境 使用语言:C/C++ IDE:VS2010+ 其他三方库 EasyX(http://www.easyx.cn/downloads/) ADB(链接:https://pan.baidu.com/s/1ghjbm51 密码:v68m) ADB环境变量配置 打开adb文件夹,将此路 阅读全文
posted @ 2018-01-19 18:24 喵小喵~ 阅读(2726) 评论(2) 推荐(2) 编辑
摘要: 运行截图: 代码: 阅读全文
posted @ 2018-01-19 16:53 喵小喵~ 阅读(362) 评论(0) 推荐(0) 编辑
上一页 1 ··· 47 48 49 50 51 52 53 54 55 ··· 68 下一页