上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 94 下一页
摘要: 简介 多线程的同步是所有的公司都会使用的. 先将各种语言的放上来 code #include <iostream> #include <thread> #include <mutex> #include <string> using namespace std; string g; mutex mt 阅读全文
posted @ 2021-06-27 18:36 HDU李少帅 阅读(80) 评论(0) 推荐(0) 编辑
摘要: 简介 找规律, 而不是盲目转弯, 这样太慢. code 参考了题解 #include <iostream> #include <vector> using namespace std; int a[101][101]={0}; int main() { int n; vector<int> b; w 阅读全文
posted @ 2021-06-27 17:06 HDU李少帅 阅读(32) 评论(0) 推荐(0) 编辑
摘要: 简介 使用回溯 + 暴力 code #include <iostream> #include <string> #include <map> #include <vector> using namespace std; bool flag = false; char v[4]={'+', '-', 阅读全文
posted @ 2021-06-27 15:12 HDU李少帅 阅读(41) 评论(0) 推荐(0) 编辑
摘要: 简介 使用回溯算法. 其实回溯算法属于暴力算法. 进行一定的减枝算法即可. 这里要使用弱检查, 全局flag 进行退出. code #include <iostream> #include <vector> #include <set> #include <map> using namespace 阅读全文
posted @ 2021-06-27 14:22 HDU李少帅 阅读(54) 评论(0) 推荐(0) 编辑
摘要: 简介 BIO Blocking IO 阻塞IO 简单来说, 就是服务器对每一个接收数据请求, 开启一个线程进行对于数据和逻辑的处理, 但是能创建的线程数量有限. 很多处理逻辑开启的线程处于阻塞状态. NIO Non-blocking IO 非阻塞 IO jdk1.4 简单来说, 服务器对于每一个接受 阅读全文
posted @ 2021-06-26 21:48 HDU李少帅 阅读(63) 评论(0) 推荐(0) 编辑
摘要: 简介 容易记的 jdk8支持接口可以添加默认方法, default; jdk8支持lambda表达式 jdk7中hashmap解决冲突采用链表, 一旦hash碰撞过多, 可能会使得一个链表上存在多个节点, 查找是花费O(n) jdk8hashmap当链表超过8个时, 采用红黑树的结构, 提高了链表的 阅读全文
posted @ 2021-06-26 21:35 HDU李少帅 阅读(794) 评论(0) 推荐(0) 编辑
摘要: 简介 对于 mysql 有两种数据库存储引擎, 一个是 innodb , 另一个是 myisam. 同: 他们都使用的是 B+树对于数据进行存储. 异: myisam 值存储数据的地址. innodb 存储的就是数据. myisam 不支持事物安全. innodb 支持事物安全. 参考链接 http 阅读全文
posted @ 2021-06-26 21:26 HDU李少帅 阅读(56) 评论(0) 推荐(0) 编辑
摘要: 简介 字符函数可以带来处理的方便性. 参考链接 https://blog.csdn.net/weixin_41162823/article/details/80172379 阅读全文
posted @ 2021-06-25 14:10 HDU李少帅 阅读(30) 评论(0) 推荐(0) 编辑
摘要: 简介 动态规划, 用到了最长子序列长度. 用两个for循环就可以得到最长子序列. 参考链接 https://blog.csdn.net/feengg/article/details/80866483 code #include <iostream> #include <vector> #includ 阅读全文
posted @ 2021-06-25 11:03 HDU李少帅 阅读(40) 评论(0) 推荐(0) 编辑
摘要: 简介 简单 code #include <iostream> #include <string> #include <set> #include <algorithm> using namespace std; int main() { string str; set<string> s; whil 阅读全文
posted @ 2021-06-25 10:25 HDU李少帅 阅读(55) 评论(0) 推荐(0) 编辑
上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 94 下一页