上一页 1 ··· 11 12 13 14 15
摘要: #include #include#define MAXCHAR 101 /*最大允许字符串长度*/int char_to_num(char ch); /*返回字符对应的数字*/char num_to... 阅读全文
posted @ 2019-01-28 10:14 DIY-Z 阅读(164) 评论(0) 推荐(0) 编辑
摘要: /*应用条件:只用于有序数组*//*当然,还可以从前往后依次查找,不过比较慢*//*在题目有时间限制时,用二分查找法(折半查找)比较好*/#includeint mid_seek(int a[], int n, int m){ int low =... 阅读全文
posted @ 2019-01-28 10:13 DIY-Z 阅读(164) 评论(0) 推荐(0) 编辑
摘要: 要求:先输入n, 表示需要排n个数。#include... 阅读全文
posted @ 2019-01-25 15:39 DIY-Z 阅读(116) 评论(0) 推荐(0) 编辑
上一页 1 ··· 11 12 13 14 15