上一页 1 ··· 14 15 16 17 18 19 20 21 22 ··· 44 下一页
摘要: #include<iostream> #include<cstring> #include<algorithm> #include<set> using namespace std; struct Student { char name[20]; int id; int score; }; Student students[] = { {"jack",112,78},{"mary",102,85} 阅读全文
posted @ 2019-11-04 16:35 清风oo 阅读(190) 评论(0) 推荐(0)
摘要: https://www.cnblogs.com/luoxiao23/p/11230412.html 1.结构体的初始化 结构体是常用的自定义构造类型,是一种很常见的数据打包方法。结构体对象的初始化有多种方式,分为指定初始化、顺序初始化、构造函数初始化。假如有如下结构体。 (1)指定初始化(Desig 阅读全文
posted @ 2019-10-26 11:31 清风oo 阅读(9577) 评论(0) 推荐(0)
摘要: 转自 https://www.cnblogs.com/andy-songwei/p/9965714.html 前言 “Source Insight(以下简称SI)是世界上最好的编辑器”,说这句话不知道会不会出门被打呢?-_- 中国古话说得好,“文无第一,武无第二”,所以不敢说SI是最好的,但是说是“ 阅读全文
posted @ 2019-10-21 21:33 清风oo 阅读(1251) 评论(0) 推荐(0)
摘要: 还有一个:仲裁会被行业拉黑,也是念经的一部分。//@Thallus: 不超载就会饿死,不加班就会饿死。东亚传统艺能内卷//@GeniusVczh:回复@wangzhipeng404:学到了新词汇:念经大队//@wangzhipeng404:念经大队还有五秒到达战场,不加班就要饿死了// @真阿当 走 阅读全文
posted @ 2019-10-13 15:31 清风oo 阅读(167) 评论(0) 推荐(0)
摘要: 3334 This declaration of '%s' hides a more global declaration. 3448 Declaration of typedef '%s' is not in a header file although it is used in a defin 阅读全文
posted @ 2019-10-13 15:20 清风oo 阅读(845) 评论(0) 推荐(0)
摘要: https://blog.csdn.net/qq_23947237/article/details/82318370 阅读全文
posted @ 2019-10-07 18:36 清风oo 阅读(749) 评论(0) 推荐(0)
摘要: https://blog.csdn.net/weixin_38452468/article/details/73274627 阅读全文
posted @ 2019-10-07 17:45 清风oo 阅读(414) 评论(0) 推荐(0)
摘要: 1163:The Triangle 1163:The Triangle 查看 提交 统计 提示 提问 查看 提交 统计 提示 提问 总时间限制: 1000ms 内存限制: 65536kB描述 73 88 1 02 7 4 44 5 2 6 5(Figure 1) Figure 1 shows a n 阅读全文
posted @ 2019-09-29 22:15 清风oo 阅读(298) 评论(0) 推荐(0)
摘要: 011:求排列的逆序数 011:求排列的逆序数 查看 提交 统计 提问 查看 提交 统计 提问 总时间限制: 1000ms 内存限制: 65536kB描述 在Internet上的搜索引擎经常需要对信息进行比较,比如可以通过某个人对一些事物的排名来估计他(或她)对各种不同信息的兴趣,从而实现个性化的服 阅读全文
posted @ 2019-09-22 18:41 清风oo 阅读(337) 评论(0) 推荐(0)
摘要: 数组排序任务可以如下完成:1)设 k=a[0], 将 k 挪到适当位置,使得比 k 小的元素都在 k 左边 比 k 大的元素都在 k 右边,和 k 相等的,不关心在 k 左右出现均可 O n) 时间完成)2)把 k 左边的部分快速排序3)把 k 右边的部分快速排序 阅读全文
posted @ 2019-09-22 13:00 清风oo 阅读(199) 评论(0) 推荐(0)
上一页 1 ··· 14 15 16 17 18 19 20 21 22 ··· 44 下一页