摘要:
#include<stdio.h> #include<pthread.h> pthread_mutex_t lock; //pthread_mutex_lock(&lock); static volatile int counter = 0; //pthread_mutex_unlock(&lock 阅读全文
摘要:
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 阅读全文
摘要:
Collections Python 生成 requirements.txt pip freeze > requirements.txt WSL 重置 Restart-Service LxssManager net stop LxssManager net start LxssManager wsl 阅读全文
摘要:
Windows Git Clone Speed Windows netsh interface tcp show global netsh interface tcp set global autotuninglevel=normal netsh interface tcp show heurist 阅读全文
摘要:
C++与C#方法命名的不同 C#的命名规范 ✔️ DO use PascalCasing for all public member, type, and namespace names consisting of multiple words. ✔️ DO use camelCasing for 阅读全文
摘要:
Faith sees best in the dark. ————Kierkegaard 阅读全文
摘要:
https://leetcode-cn.com/problems/happy-number/submissions/ class Solution { public: bool isHappy(int n) { short times = 7; int num; while(n != 1 && -- 阅读全文
摘要:
TLB未命中——为何你的leetcode程序时快时慢 Paging: Introduction It is sometimes said that the operating system takes one of two approaches when solving most any space 阅读全文
摘要:
https://leetcode-cn.com/problems/uncrossed-lines/submissions/ 算法珠玑——动态规划(1035) 这道题很有意思!问了这么多,本质上是在求LCS。 class Solution { public: int maxUncrossedLines 阅读全文