上一页 1 2 3 4 5 6 7 8 9 10 ··· 16 下一页
摘要: 链接错误解决方法 1. 检查库是否链接正确 2. 库的顺序是否合理(如果库之间有依赖关系的话) 3. 检查obj文件是否存在既有C编译的,也有C++编译的,如果存在,用extern "C"去声明函数(Visual Studio的cl编译器默认.c文件用C编译,.cpp文件用C++编译) 4. 是否未 阅读全文
posted @ 2018-08-12 21:01 我在地狱 阅读(587) 评论(0) 推荐(0) 编辑
摘要: 提示凭证不工作问题 https://blog.csdn.net/sinat_25926481/article/details/50775616 阅读全文
posted @ 2018-08-03 16:19 我在地狱 阅读(130) 评论(0) 推荐(0) 编辑
摘要: 参考链接 参考链接2 Buffers are normally maintained by the operating system, which determines the optimal time to write the data automatically to disk: when a 阅读全文
posted @ 2018-06-22 16:16 我在地狱 阅读(570) 评论(0) 推荐(0) 编辑
摘要: 1 #include <cstdio> 2 #include <iostream> 3 #include <set> 4 using namespace std; 5 const int N = 1e5+5; 6 7 struct Block { 8 long long begin, all_siz 阅读全文
posted @ 2018-06-06 19:40 我在地狱 阅读(200) 评论(0) 推荐(0) 编辑
摘要: 阮一峰的makefile教程对新人挺友好的。 target ... : prerequisites ... command ... ... target通常是一个目标文件,也可以是一个操作(伪目标)。prerequisites就是,要生成那个target所需要的。command也就是make需要执行 阅读全文
posted @ 2018-05-25 19:08 我在地狱 阅读(169) 评论(0) 推荐(0) 编辑
摘要: C++对象模型——吴泰 C/C++杂记 C++中的虚函数(表)实现机制以及用C语言对其进行的模拟实现 C++ 多继承和虚继承的内存布局 【已翻译100%】 (虚继承参考,推荐) 图说C++对象模型:对象内存布局详解 VTable Notes on Multiple Inheritance in GC 阅读全文
posted @ 2018-05-14 17:11 我在地狱 阅读(582) 评论(0) 推荐(0) 编辑
摘要: 粤语声母韵母声调查询网 粤语发音词典 粤语曲 《李香兰》 nou5 ceon1 fung3 恼春风 ngo5 sam1 jan1 ho6 nou5 ceon1 fung3 我心因何恼春风 syut3 fau2 ceot1 说不出 ze3 zau2 soeng3 sung3 借酒相送 je6 jyu5 阅读全文
posted @ 2018-05-05 23:21 我在地狱 阅读(1047) 评论(0) 推荐(0) 编辑
摘要: 本篇是in place algorithm的学习笔记。目前学习的是in place merge与in place martrix transposition这两个算法。 1.in place merge 论文链接:Practical in-place merging 论文讨论的是如何O(n)时间复杂 阅读全文
posted @ 2018-04-30 14:48 我在地狱 阅读(1106) 评论(2) 推荐(1) 编辑
摘要: 后缀自动机能识别字符串S的所有子串,是一个DAG。 http://blog.csdn.net/huanghongxun/article/details/51112764 https://blog.xehoth.cc/SuffixAutomation/#一些性质 hihocoder上的一堆SAM入门教 阅读全文
posted @ 2018-04-08 20:26 我在地狱 阅读(369) 评论(0) 推荐(0) 编辑
摘要: 已知数组a[]及其和sum, 求sum! / (a1!a2!...an!) 的个位数的值。 求某数的逆元表写成了求某数阶乘的逆元表,故一直没找到错误。 P 是质数的幂B 表示质数,P 表示模数,cal(n) 将返回 n!,以 a × B^b 形式表示,a为模P的情况下。 1 ll n,x,y,P,B 阅读全文
posted @ 2018-04-07 23:43 我在地狱 阅读(185) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 10 ··· 16 下一页