Untitled Posted on 2021-02-22 | Post modified: 2021-03-08 | Words count in article: 2.6k 链表题反转链表123456789101112131415161718192021ListNode* reverseList(ListNode* head) { // 三指针 // ... Read more »
git基本命令 Posted on 2021-01-30 | Post modified: 2021-08-08 | In tools | Words count in article: 1.7k 权限与公钥如出现权限问题,可能是公钥过期或未配置 123451. ssh-keygen2.cat ~/.ssh/id_rsa.pub然后粘贴该公钥到github 的 ssh key中 git 管理仓库 ... Read more »
Untitled Posted on 2021-01-22 | Post modified: 2021-01-22 | Words count in article: 2k epollepoll是在2.6内核中提出的,是之前的select和poll的增强版本。相对于select和poll来说,epoll更加灵活,没有描述符限制。epoll使用一个文件描述符管理多个描述符, ... Read more »
Untitled Posted on 2021-01-20 | Post modified: 2021-01-20 | Words count in article: 51 查看端口是否有程序使用123netstat -anp | grep :80 # 所有与80有关的端口lsof -i:80 # 只看80端口 查看指定程序的进程123ps -ef ... Read more »
Untitled Posted on 2021-01-17 | Post modified: 2021-01-17 | Words count in article: 278 下载安装texlive镜像 进入 清华镜像或者中科大镜像 下载最新的texlive安装包(texlive.iso) 。 使用镜像工具 打开。 点击install-tl-advanced.bat进行安装 ... Read more »
虚函数的开销 Posted on 2021-01-16 | Post modified: 2021-08-24 | In C++ | Words count in article: 339 子类在覆盖(重写)父类的虚函数时,名称和参数列表必须保持一致,不然就不会发生虚函数的覆盖(重写),而是屏蔽了父类的该函数。 虚函数的调用开销 虚函数相较与普通函数,多了一次访问内存的操作,需要通过虚表 ... Read more »
Untitled Posted on 2020-09-21 | Post modified: 2020-09-21 | Words count in article: 207 有序矩阵第K小的数123456789101112131415161718192021222324252627282930bool check(vector<vector<int>&g ... Read more »
Untitled Posted on 2020-09-09 | Post modified: 2020-09-09 | Words count in article: 181 逆序对 归并思想 1234567891011121314151617181920212223242526272829303132class Solution {public: int ... Read more »
Untitled Posted on 2020-09-09 | Post modified: 2020-06-23 | Words count in article: 216 生成器 生成器(generator)是构造可迭代对象的一种简单方式。与函数直接返回单个值不同,生成器以延迟的方式返回一个值的序列,每次返回一个值后暂停,直到下一个值被请求。创建生 ... Read more »