2018-12-8 論文翻譯+hdoj+git+python
今天干的事很少,明天得把實驗寫了。python
- 論文翻譯了摘要。0.5h
- hdoj 五道水題。注意while(cin>>char&&char != '\n')沒用。可用ch = cin.get()或cin.get(ch)。0.5h
- python
高階函數:函數名也可做爲右值或別的函數的參數和返回值
map: map(f,a) 講f函數的效果做用在每個a的元素上。
reduce:reduce(f, [x1, x2, x3, x4]) = f(f(f(x1, x2), x3), x4)。
filter: filter(f,a)返回a經f做用後不爲0的元素。
sorted: sorted(['bob', 'about', 'Zoo', 'Credit'], key=str.lower, reverse=True) #key可本身定義。
- git 建立版本庫:git init 提交到stage: git add 提交到倉庫:git commit -m "it is a comment" 查看狀態: git status 查看變化: git diff 查看日誌: git log 回退到上一個版本: git reset --hard HEAD^ 轉到任意版本: git reset --hard xxxxx(版本號) 查看命令日誌: git relog stage 是暫存區。
歡迎關注本站公眾號,獲取更多信息