Skip to content

Commit 2807d35

Browse files
committed
first commit
0 parents  commit 2807d35

File tree

21 files changed

+4807
-0
lines changed

21 files changed

+4807
-0
lines changed

.vscode/settings.json

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
{
2+
"editor.fontSize": 20,
3+
"files.associations": {
4+
"array": "cpp",
5+
"atomic": "cpp",
6+
"bit": "cpp",
7+
"*.tcc": "cpp",
8+
"cctype": "cpp",
9+
"clocale": "cpp",
10+
"cmath": "cpp",
11+
"cstdarg": "cpp",
12+
"cstddef": "cpp",
13+
"cstdint": "cpp",
14+
"cstdio": "cpp",
15+
"cstdlib": "cpp",
16+
"cwchar": "cpp",
17+
"cwctype": "cpp",
18+
"deque": "cpp",
19+
"unordered_map": "cpp",
20+
"vector": "cpp",
21+
"exception": "cpp",
22+
"algorithm": "cpp",
23+
"functional": "cpp",
24+
"iterator": "cpp",
25+
"memory": "cpp",
26+
"memory_resource": "cpp",
27+
"numeric": "cpp",
28+
"optional": "cpp",
29+
"random": "cpp",
30+
"string": "cpp",
31+
"string_view": "cpp",
32+
"system_error": "cpp",
33+
"tuple": "cpp",
34+
"type_traits": "cpp",
35+
"utility": "cpp",
36+
"fstream": "cpp",
37+
"initializer_list": "cpp",
38+
"iosfwd": "cpp",
39+
"iostream": "cpp",
40+
"istream": "cpp",
41+
"limits": "cpp",
42+
"new": "cpp",
43+
"ostream": "cpp",
44+
"sstream": "cpp",
45+
"stdexcept": "cpp",
46+
"streambuf": "cpp",
47+
"typeinfo": "cpp",
48+
"ctime": "cpp",
49+
"list": "cpp"
50+
}
51+
}

.vscode/tasks.json

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
"version": "2.0.0",
3+
"tasks": [
4+
{
5+
"type": "cppbuild",
6+
"label": "C/C++: g++.exe 生成活动文件",
7+
"command": "E:\\MinGW\\bin\\g++.exe",
8+
"args": [
9+
"-fdiagnostics-color=always",
10+
"-g",
11+
"${file}",
12+
"-o",
13+
"${fileDirname}\\${fileBasenameNoExtension}.exe"
14+
],
15+
"options": {
16+
"cwd": "${fileDirname}"
17+
},
18+
"problemMatcher": [
19+
"$gcc"
20+
],
21+
"group": "build",
22+
"detail": "编译器: E:\\MinGW\\bin\\g++.exe"
23+
}
24+
]
25+
}

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Algorithms
2+
3+
a self-study notes of algorithms of Chengyun Zuo in C++ version.
4+
5+
You can find the article in [知乎](https://www.zhihu.com/column/c_1528483124333297664).

0 commit comments

Comments
 (0)