摘要: #include <iostream> #include <vector> #include <string.h> using namespace std; int isSpace(char x) { if(x == ' ' or x == '\t' or x == '\n') { return 1 阅读全文
posted @ 2021-10-25 21:29 Kiris 阅读(14) 评论(0) 推荐(0) 编辑
摘要: #include #include using namespace std;struct Node{ int data; ... 阅读全文
posted @ 2021-10-25 21:20 Kiris 阅读(19) 评论(0) 推荐(0) 编辑
摘要: 这里写自定义目录标题 目的和动机 场景 UML 实现 优缺点 注意事项 目的和动机 运用共享技术有效地支持大量地细粒度对象。 享:代表共享; 元:基本单元 关键概念:内部状态和外部状态 场景 以下情况都成立时方可使用: 一个应用程序使用了大量地对象 大量地对象造成了存储开销 对象地大多数状态可变为外 阅读全文
posted @ 2021-09-28 08:56 Kiris 阅读(28) 评论(0) 推荐(0) 编辑
摘要: 模糊识别 https://github.com/typesense/typesense 编码经验 https://isocpp.gi... 阅读全文
posted @ 2021-08-09 09:19 Kiris 阅读(22) 评论(0) 推荐(0) 编辑
摘要: 构造方法是用来初始化类的对象,与父类的其他成员不同,他不能被子类继承(子类可以继承父类所有的成员变量和成员方法,但是不继承父类的构造... 阅读全文
posted @ 2021-07-13 09:13 Kiris 阅读(56) 评论(0) 推荐(0) 编辑
摘要: https://github.com/adah1972/geek_time_cpp/archive/refs/heads/maste... 阅读全文
posted @ 2021-07-12 09:11 Kiris 阅读(12) 评论(0) 推荐(0) 编辑
摘要: 每天阅读一篇英语的编程文章 每天看一条英文的 C++ Core Guideline 每天看 5 页 C++ 之父的 The C++ ... 阅读全文
posted @ 2021-07-12 09:07 Kiris 阅读(25) 评论(0) 推荐(0) 编辑
摘要: 端正的学习心态,是高效学习的第一步。而拥有积极的学习心态,一定能让你的学习事半功倍 在知识的领域也有阶层之分,那些长期在底层知识阶层... 阅读全文
posted @ 2021-07-12 09:05 Kiris 阅读(34) 评论(0) 推荐(0) 编辑
摘要: https://www.jianshu.com/u/c1b1137d5886 李永顺 https://www.jianshu.com/users/7386692d5489/timeline 袁英杰 小类大对象 https://www.jianshu.com/u/69f40328d4f0 python 阅读全文
posted @ 2019-12-21 11:21 Kiris 阅读(216) 评论(0) 推荐(0) 编辑
摘要: 一、考察数据结构和算法为主 IT 公司一般都会考察数据结构和算法能力,其中以百度与爱奇艺等为代表,面试官一般是先简单地了解你之前的工... 阅读全文
posted @ 2019-03-26 21:46 Kiris 阅读(28) 评论(0) 推荐(0) 编辑