01 2019 档案
摘要:构造函数中是否可以调用虚函数 https://blog.csdn.net/sumup/article/details/78174915 C++函数重载 https://blog.csdn.net/u013982161/article/details/527...
阅读全文
摘要:https://baike.baidu.com/item/NoSQL/8828247?fr=aladdin NoSQL 没毛病,为什么 MySQL 还是“王”? https://www.oschina.net/news/84809/nosql-no-probl...
阅读全文
摘要:如何实现一个简单的RPC https://www.jianshu.com/p/5b90a4e70783 RPC服务和HTTP服务对比 https://blog.csdn.net/wangyunpeng0319/article/details/78651998 ...
阅读全文
摘要:本人下的版本是VS2010的,装的VS2013的,同时我电脑装了VS2008 编译的时候报错:无法打开包括文件:“SDKDDKVer.h” 原因: 本机安装了两个版本的VS就可能会出现这个编译错误, 比如我机器上同时装了VS2012和VS2008. VS201...
阅读全文
摘要:一面: 电话面试,总时间40分钟,2个人,第一个人问的一些基础的C++技术,主要是网络和数据库和多线程相关 第二个人主要问一些项目架构,和项目管理相关。 二面:(全是选择题) 第1-4部分是智力题,找数字规律和找图形 第5-6部分是性格题 第7-10部分是逻辑...
阅读全文
摘要:https://www.cnblogs.com/sun-frederick/p/4772479.html
阅读全文
摘要:https://baike.baidu.com/item/%E5%8D%8F%E7%A8%8B/8652240 Lua中的协同程序 coroutine https://www.cnblogs.com/sifenkesi/p/3824321.html Lua的协...
阅读全文
摘要:https://www.cnblogs.com/xiezhw3/p/4354601.html
阅读全文
摘要:class Solution { int myMin(int x, int y) { return x & nums1, vector& nums2, int findKth) { int length_1 = (int) ...
阅读全文
摘要:class Solution {public: int lengthOfLongestSubstring(string s) { vectorv(256,-1); int len = s.size(); int ...
阅读全文
摘要:class Solution {public: vector twoSum(vector& nums, int target) { vectortwoSum; maptmpmap; int nsize =...
阅读全文
摘要:/** * Definition for singly-linked list. * struct ListNode { * int val; * ListNode *next; * ListNode(int x) : val(x), ...
阅读全文
摘要:kill -9 $(netstat -nlp | grep :4567 | awk '{print $7}' | awk -F"/" '{ print $1 }')sleep 1nohup `pwd`/DBCache &echo "$!" > pid_DBCa...
阅读全文