Little Valentine liked playing with binary trees very much. Her favorite game was constructing randomly looking binary trees with capital letters in t ...
分类:
其他好文 时间:
2019-10-07 21:48:56
阅读次数:
117
正如序言中作者所说,此书就是为了教会读者思考和理解递归。而选择scheme这门语言作为载体,无非因为递归是Scheme这门语言基本而自然的计算机制。这本书独特的地方在于全书使用的是一问一答的对话形式,一定程度上展示了非线性的思考过程,与上来直接堆砌语法和定义的书籍大不相同,这种形式对于初学者而言无疑 ...
分类:
其他好文 时间:
2019-10-06 20:49:05
阅读次数:
115
课上内容(Lesson) 词汇(Key Word ) OL Office Lady :白领丽人 employee n.雇员 employer n. 雇主,雇佣者 assistant n.助手 sales reps 销售代表,推销员 rep: representative 的缩写。 代表 /?repr ...
分类:
其他好文 时间:
2019-10-06 11:36:54
阅读次数:
117
注:本文章参考自:https://blog.csdn.net/wang_heng199/article/details/74477738 问题描述基本问题为O(n)求凸n角形的对踵点,而由该问题可以引申出许多的难题,他们包括: 计算距离 凸多边形直径凸多边形宽凸多边形间最大距离凸多边形间最小距离外接 ...
分类:
其他好文 时间:
2019-10-05 00:45:22
阅读次数:
62
常见文本编码格式:UTF-8、UTF-16、UTF-32、ANSCII BOM 是 Byte Order Mark 的简称,即字节序标记。用于标记文本流: 表示文本流的字节顺序,是小端序(little-endian)还是大端序(big-endian); 表示文本流是 Unicode 字符; 表示文本 ...
分类:
编程语言 时间:
2019-10-04 15:27:27
阅读次数:
120
What are some disciplines for using multiple inheritance? M.I. rule of thumb #1: Use inheritance only if doing so will remove if / switch statements f ...
分类:
其他好文 时间:
2019-10-03 01:02:24
阅读次数:
99
术语“little endian(小端)”和“big endian(大端)”出自Jonathan Swift的《格列佛游记》(Gulliver's Trabels)一书,其中交战的两个派别无法就应该从哪一端(小端还是大端)打开一个半熟的鸡蛋打成一致。就像鸡蛋的问题一样,选择何种字节顺序没有技术上的理 ...
分类:
其他好文 时间:
2019-10-02 00:48:24
阅读次数:
101
# 列表操作 name_list = ["wang", "niu", "bai", "sui"] # 取值 print("**********取值***************") name = name_list[0] print(name) # 取索引 print("**********取索引* ...
分类:
编程语言 时间:
2019-10-01 18:35:03
阅读次数:
98
Put as much as you can in the .c and as little as possible in the .h. The includes in the .c are only included when that one file is compiled, but the ...
分类:
其他好文 时间:
2019-09-28 20:29:54
阅读次数:
87
原文转至:https://dzone.com/articles/what-servlet-container In this post, I write a little bit about the basic ideas of web server, Servlet container and i ...
分类:
其他好文 时间:
2019-09-27 10:45:11
阅读次数:
87