- 博客(1)
- 资源 (4)
- 收藏
- 关注
原创 小华同学
```py# _*_ coding:utf-8 _*_import osdef func(list): # 声明字典 record = {} for item in list: if item in record: record[item] += 1 else: record[item] = 1 for i in sorted(record): print("%s %d" ...
2021-01-05 19:33:07
123
cpptools-win32.vsix
Instructions
To use the "offline" .vsix (that doesn't download OS-based dependencies on extension activation), download the .vsix that matches your OS and run the "Install from VSIX" command in VS Code.
Requirements
VS Code 1.44.0 or later.
32-bit x86 Linux is no longer supported. #5346
2020-07-30
Lex和Yacc教程.pdf
非常通俗易懂的讲解lex和yacc的文档,教科书上把lex的作用的作用叫做“词法分析 lexical analysis ”,这个中文叫法非常让人看不明白(叫做“符号提取”更合适),其实从它的英文单词lexical上来看他的意思其实是非常清楚的。lexical,在webster上的解释是:of or relating to words or the vocabulary of a language as distinguished from its grammar and construction。指的是: 一种语言中关于词汇、单词的,与之相对的是这种语言的语法和组织。这么来看的话 lexical analysis 的作用就应该是语言中的词汇和单词分析。事实上他的作用就是从语言中提取单词。放到编程语言中来说,他要做的事情其实就是提取编程语言占用的各种保留字、操作符等等语言的元素。
2019-09-05
mingw64.zip
MinGW-w64安装包。MinGW, 全称Minimalist GNU for Windows, 是GCC编译器和GNU Binutils在Windows平台的移植版本. MinGW-w64原是其分支, 后来成为独立发展的项目. 由于仅有MinGW-w64被GCC官方所支持, 而MinGW早已停止更新, 因此推荐使用MinGW-w64。
2019-07-29
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人