上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 18 下一页

2019年4月4日

c++ 中的数字和字符串的转换

摘要: 理由:一直忘记数字型的字符串和数字之间的转换,这次总结一下,以便后面再次用到。 其实 C++ 已经给我们写好了相应的函数,直接拿来用即可 QA1:如何把一个数字转换为一个数字字符串?(这个不是很常用) 函数:to_string(C++11) 函数原型:string to_string(int val 阅读全文

posted @ 2019-04-04 14:39 爱笑的张飞 阅读(4979) 评论(0) 推荐(0) 编辑

2019年4月2日

C++ 实现 split 操作

摘要: 理由:由于 C++ 标准库里面没有字符分割函数 split ,这可太不方便了,我们利用 STL 来实现自己的 split 函数: 原型:vector<string> split(const string& s, const string& seperator); 阅读全文

posted @ 2019-04-02 21:58 爱笑的张飞 阅读(7121) 评论(0) 推荐(0) 编辑

2019年3月31日

c++ 面试题(操作系统篇)

摘要: 1,消息队列: https://kb.cnblogs.com/page/537914/ 2,fork中父进程和子进程的资源联系: https://blog.csdn.net/weixin_42250655/article/details/81605369 3,多线程为什么会死锁,死锁如何解除? ht 阅读全文

posted @ 2019-03-31 16:31 爱笑的张飞 阅读(964) 评论(0) 推荐(0) 编辑

2019年3月27日

c++ 面试题(数据库)

摘要: 1,索引的原理: https://www.cnblogs.com/songwenjie/p/9414960.html https://blog.csdn.net/qq_32924343/article/details/80199977(值得一看) 2,聚簇索引和非聚簇索引: 重要区别:该索引中键值的 阅读全文

posted @ 2019-03-27 22:04 爱笑的张飞 阅读(1304) 评论(0) 推荐(0) 编辑

2019年3月17日

c++ 面试题(网络类)

摘要: 1,若服务器方单独终止之后,客户端继续发数据会怎么样? https://blog.csdn.net/Nick_666/article/details/78342442 https://www.zhihu.com/question/35013918/answer/63664974(值得一看) 2,GE 阅读全文

posted @ 2019-03-17 20:04 爱笑的张飞 阅读(1494) 评论(0) 推荐(0) 编辑

2019年3月16日

c++ 面试题(C/C++/STL)

摘要: 1,智能指针:auto_ptr(c++11 已经弃用),unique_ptr(用于取代 auto_ptr), shared_ptr, weak_ptr http://www.cnblogs.com/TenosDoIt/p/3456704.html(值得一看) https://blog.csdn.ne 阅读全文

posted @ 2019-03-16 15:25 爱笑的张飞 阅读(4682) 评论(0) 推荐(1) 编辑

2019年3月15日

c++ 面试题(算法类)

摘要: 1,从无序的数据流中找到其中位数:(用大根堆和小根堆来实现) 1 float getMidimum(vector<int>& nums) { 2 priority_queue<int> bigHeap; // 大数优先 3 priority_queue<int, vector<int>, great 阅读全文

posted @ 2019-03-15 16:54 爱笑的张飞 阅读(464) 评论(0) 推荐(0) 编辑

2019年3月13日

c++ 面试题(汇总)

摘要: 1,extern 关键字作用: http://www.cnblogs.com/lzjsky/archive/2010/11/24/1886686.html 2,static 关键字作用: https://baike.sogou.com/v3239767.htm?fromTitle=static ht 阅读全文

posted @ 2019-03-13 13:21 爱笑的张飞 阅读(490) 评论(0) 推荐(0) 编辑

2019年3月6日

leetcode 树类型题

摘要: 树的测试框架: 1 // leetcodeTree.cpp : 定义控制台应用程序的入口点。 2 // 3 4 #include "stdafx.h" 5 #include <iostream> 6 #include <queue> 7 #include <stack> 8 #include <ve 阅读全文

posted @ 2019-03-06 21:29 爱笑的张飞 阅读(239) 评论(0) 推荐(0) 编辑

error LNK2019: 无法解析的外部符号 "class std::basic_ostream<char,struct std::char_traits<char> >

摘要: 1,VS2013: 错误 1 error LNK2019: 无法解析的外部符号 "class std::basic_ostream<char,struct std::char_traits<char> > & __cdecl operator<<(class std::basic_ostream<c 阅读全文

posted @ 2019-03-06 18:19 爱笑的张飞 阅读(9033) 评论(0) 推荐(2) 编辑

上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 18 下一页

导航