上一页 1 2 3 4 5 6 7 8 ··· 13 下一页
摘要: #include<stdio.h> #include<pthread.h> pthread_mutex_t lock; //pthread_mutex_lock(&lock); static volatile int counter = 0; //pthread_mutex_unlock(&lock 阅读全文
posted @ 2022-05-19 15:29 千心 阅读(37) 评论(0) 推荐(0) 编辑
摘要: The article is very helpful for the gamer. What are the main graphics settings that affect performance in PC games? In 2D games, there are not many ca 阅读全文
posted @ 2022-05-07 14:01 千心 阅读(67) 评论(0) 推荐(0) 编辑
摘要: Collections Python 生成 requirements.txt pip freeze > requirements.txt WSL 重置 Restart-Service LxssManager net stop LxssManager net start LxssManager wsl 阅读全文
posted @ 2022-05-06 12:37 千心 阅读(11) 评论(0) 推荐(0) 编辑
摘要: Windows Git Clone Speed Windows netsh interface tcp show global netsh interface tcp set global autotuninglevel=normal netsh interface tcp show heurist 阅读全文
posted @ 2022-04-12 19:52 千心 阅读(29) 评论(0) 推荐(0) 编辑
摘要: C++与C#方法命名的不同 C#的命名规范 ✔️ DO use PascalCasing for all public member, type, and namespace names consisting of multiple words. ✔️ DO use camelCasing for 阅读全文
posted @ 2022-04-12 11:18 千心 阅读(33) 评论(0) 推荐(0) 编辑
摘要: Faith sees best in the dark. ————Kierkegaard 阅读全文
posted @ 2022-04-11 17:25 千心 阅读(17) 评论(0) 推荐(0) 编辑
摘要: https://leetcode-cn.com/problems/happy-number/submissions/ class Solution { public: bool isHappy(int n) { short times = 7; int num; while(n != 1 && -- 阅读全文
posted @ 2022-04-11 16:22 千心 阅读(30) 评论(0) 推荐(0) 编辑
摘要: TLB未命中——为何你的leetcode程序时快时慢 Paging: Introduction It is sometimes said that the operating system takes one of two approaches when solving most any space 阅读全文
posted @ 2022-04-07 17:10 千心 阅读(87) 评论(0) 推荐(0) 编辑
摘要: https://leetcode-cn.com/problems/uncrossed-lines/submissions/ 算法珠玑——动态规划(1035) 这道题很有意思!问了这么多,本质上是在求LCS。 class Solution { public: int maxUncrossedLines 阅读全文
posted @ 2022-04-05 16:07 千心 阅读(26) 评论(0) 推荐(0) 编辑
摘要: Your time is limited, so don't waste it living someone else's life. Don't be trapped by dogma which is living with the results of other people's think 阅读全文
posted @ 2022-04-04 09:27 千心 阅读(234) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 13 下一页