摘要:
术语表 第 7 章 类 抽象数据类型(abstract data type): 封装(隐藏)了实现细节的数据结构。 访问说明符(access specifier): 包括关键字 public 和 private。用于定义成员对类的用户可见还是只对类的友元和成员可见。在类中说 阅读全文
摘要:
``` //判断此系统是大端还是小端的 //一个32位四字节的整数值,例如1,实际的计算机编码表示 是 0x00000001 //小端系统中在内存中的表示是 01 00 00 00 //大端系统中在内存中的表示是 00 00 00 01 include using namespace std; un 阅读全文
摘要:
题目描述 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 阅读全文
摘要:
题目描述 A long distance telephone company charges its customers by the following rules: Making a long distance call costs a certain amount per minute, de 阅读全文
摘要:
C++游戏服务器编程笔记 IP详解 IP详解 INTERNET的历史 上世纪60年底起源于美国 1992年,Internet上的主机超过了100万台 现在已经是现代文明人的必需品 TCP/IP的历史 Internet protocol suite (一套标准和规范) 早期探 阅读全文
摘要:
题目描述 宋代史学家司马光在《资治通鉴》中有一段著名的“德才论”:“是故才德全尽谓之圣人,才德兼亡谓之愚人,德胜才谓之君子,才胜德谓之小人。凡取人之术,苟不得圣人,君子而与之,与其得小人,不若得愚人。” 现给出一批考生的德才分数,请根据司马光的理论给出录取排名。 输入格式 输入第一行给出 3 个正整 阅读全文
摘要:
题目描述 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 阅读全文
摘要:
《算法笔记》中摘取 //选取随机主元,对区间[left, right]进行划分 int randPartition(int A[], int left, int right) { //生成[left, right]内的随机数p int p = (round(1.0 rand() / RAND_MAX 阅读全文