上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 14 下一页
摘要: 术语表 第 7 章 类 抽象数据类型(abstract data type): 封装(隐藏)了实现细节的数据结构。    访问说明符(access specifier): 包括关键字 public 和 private。用于定义成员对类的用户可见还是只对类的友元和成员可见。在类中说 阅读全文
posted @ 2019-09-16 20:09 哨音 阅读(152) 评论(0) 推荐(0) 编辑
摘要: ``` //判断此系统是大端还是小端的 //一个32位四字节的整数值,例如1,实际的计算机编码表示 是 0x00000001 //小端系统中在内存中的表示是 01 00 00 00 //大端系统中在内存中的表示是 00 00 00 01 include using namespace std; un 阅读全文
posted @ 2019-09-12 09:42 哨音 阅读(164) 评论(0) 推荐(0) 编辑
摘要: 题目描述 To evaluate the performance of our first year CS majored students, we consider their grades of three courses only: C C Programming Language, M Ma 阅读全文
posted @ 2019-09-12 09:19 哨音 阅读(150) 评论(0) 推荐(0) 编辑
摘要: 题目描述 A long distance telephone company charges its customers by the following rules: Making a long distance call costs a certain amount per minute, de 阅读全文
posted @ 2019-09-12 09:14 哨音 阅读(133) 评论(0) 推荐(0) 编辑
摘要: C++游戏服务器编程笔记 IP详解 IP详解 INTERNET的历史 上世纪60年底起源于美国 1992年,Internet上的主机超过了100万台 现在已经是现代文明人的必需品    TCP/IP的历史 Internet protocol suite (一套标准和规范) 早期探 阅读全文
posted @ 2019-09-11 07:51 哨音 阅读(284) 评论(0) 推荐(0) 编辑
摘要: 题目描述 宋代史学家司马光在《资治通鉴》中有一段著名的“德才论”:“是故才德全尽谓之圣人,才德兼亡谓之愚人,德胜才谓之君子,才胜德谓之小人。凡取人之术,苟不得圣人,君子而与之,与其得小人,不若得愚人。” 现给出一批考生的德才分数,请根据司马光的理论给出录取排名。 输入格式 输入第一行给出 3 个正整 阅读全文
posted @ 2019-09-10 15:31 哨音 阅读(194) 评论(0) 推荐(0) 编辑
摘要: 题目描述 The string APPAPT contains two PAT's as substrings. The first one is formed by the 2nd, the 4th, and the 6th characters, and the second one is fo 阅读全文
posted @ 2019-09-06 10:09 哨音 阅读(151) 评论(0) 推荐(0) 编辑
摘要: 《算法笔记》中摘取 //选取随机主元,对区间[left, right]进行划分 int randPartition(int A[], int left, int right) { //生成[left, right]内的随机数p int p = (round(1.0 rand() / RAND_MAX 阅读全文
posted @ 2019-09-05 22:55 哨音 阅读(785) 评论(0) 推荐(0) 编辑
摘要: 术语表 第 6 章 函数 二义性调用(ambiguous call): 是一种编译时发生的错误,造成二义性调用的原因时在函数匹配时两个或多个函数提供的匹配一样好,编译器找不到唯一的最佳匹配。    实参(argument): 函数调用时提供的值,用于初始化函数的形参。   阅读全文
posted @ 2019-09-04 18:23 哨音 阅读(169) 评论(0) 推荐(0) 编辑
摘要: 术语表 第 5 章 语句 块(block): 包围在花括号内的由 0 条或多条语句组成的序列。块也是一条语句,所以只要是能使用语句的地方,就可以使用块。    break语句(break statement): 终止理他最近的循环或switch语句。控制权转移到循环或switch 阅读全文
posted @ 2019-09-04 16:38 哨音 阅读(146) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 14 下一页