03 2020 档案

摘要:void preOrderTraversal(BTNode *root) { if(NULL == root) { return; } printf("%d ", root->val); preOrderTraversal(root->lChild); preOrderTraversal(root- 阅读全文
posted @ 2020-03-28 00:14 xinyueliu 阅读(177) 评论(0) 推荐(0)
摘要:Assembly,Caucus,Colloquium, Colloquy,Commission,Committee,Conclave,Conference,Congress, Convention,Convocation,Council,Discussion,Forum,Lecture,Meetin 阅读全文
posted @ 2020-03-27 12:30 xinyueliu 阅读(131) 评论(0) 推荐(0)
摘要:brute force attack reclusiveShe 【had been living】 a reclusive life in Los Angeles 【since her marriage broke up】. unsociableMy marriage 【has broken up】 阅读全文
posted @ 2020-03-27 10:24 xinyueliu 阅读(113) 评论(0) 推荐(0)
摘要:enter code:push ebpmov ebp, esp leave code:mov esp,ebppop ebp classic example:entersub esp, 8leaveretn 10h In the mnemonic ret N, N is the size of par 阅读全文
posted @ 2020-03-26 12:21 xinyueliu 阅读(696) 评论(0) 推荐(0)
摘要:--upgrade pip python -m pip install --upgrade pip --python setup.py installpip install requests pip uninstall requests import requests 阅读全文
posted @ 2020-03-15 14:22 xinyueliu 阅读(141) 评论(0) 推荐(0)
摘要:It’s doesn’t matter if you see me or not, I am standing right there, With no emotion; It’s doesn’t matter if you miss me or not, The feeling is right 阅读全文
posted @ 2020-03-14 14:22 xinyueliu 阅读(165) 评论(0) 推荐(0)
摘要:1.黑夜给了我一双黑色的眼睛,我却用它来寻找光明。——《一代人》2.我从没被谁知道,所以也没被谁忘记。在别人的回忆中生活,并不是我的目的。——《早发的种子》3.你不愿种花,你说,我不愿看见它一点点凋落。是的,为了避免结束,你避免了一切开始。——《避免》4.草在结它的种子,风在摇它的叶子。我们站着,不 阅读全文
posted @ 2020-03-14 13:59 xinyueliu 阅读(1050) 评论(0) 推荐(0)
摘要:we vie with people around when we are young and compete with ourselves after being adult. 阅读全文
posted @ 2020-03-14 13:40 xinyueliu 阅读(91) 评论(0) 推荐(0)
摘要:cd /logs hisDate=`date -d"-1 week" +%Y%m%d` for currentD in `find /logs/ -type d` do logDir=`echo $currentD|cut -d"/" -f4` logDate=${logDir} if [ ${hi 阅读全文
posted @ 2020-03-10 20:31 xinyueliu 阅读(116) 评论(0) 推荐(0)