Skip to content

Commit c368476

Browse files
committed
创建test分支
1 parent b5b623a commit c368476

File tree

3 files changed

+28
-3
lines changed

3 files changed

+28
-3
lines changed

.vscode/settings.json

+22-1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,27 @@
2020
"ios": "cpp",
2121
"istream": "cpp",
2222
"ostream": "cpp",
23-
"xiosbase": "cpp"
23+
"xiosbase": "cpp",
24+
"cctype": "cpp",
25+
"cmath": "cpp",
26+
"cstddef": "cpp",
27+
"cstdint": "cpp",
28+
"cstdio": "cpp",
29+
"cstdlib": "cpp",
30+
"cstring": "cpp",
31+
"cwchar": "cpp",
32+
"iostream": "cpp",
33+
"iterator": "cpp",
34+
"memory": "cpp",
35+
"new": "cpp",
36+
"stdexcept": "cpp",
37+
"typeinfo": "cpp",
38+
"xfacet": "cpp",
39+
"xlocale": "cpp",
40+
"xlocinfo": "cpp",
41+
"xlocnum": "cpp",
42+
"xmemory": "cpp",
43+
"xmemory0": "cpp",
44+
"xstddef": "cpp"
2445
}
2546
}

Algorithm/BucketSort.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#include<iterator>
22
#include<iostream>
33
#include<vector>
4-
using namespace std;
4+
using std::vector;
55

66
/*****************
77

README.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030

3131
## C/C++
3232

33-
### const
33+
<details><summary>const</summary><br>
3434

3535
```cpp
3636
//
@@ -84,6 +84,10 @@ int* const function7(); // 返回一个指向变量的常指针,使用:i
8484
3. 常量引用,经常用于形参类型,即避免了拷贝,又避免了函数对值的修改;
8585
4. 修饰成员函数,说明该成员函数内不能修改成员变量。
8686
87+
88+
</details>
89+
90+
8791
### volatile
8892
8993
```cpp

0 commit comments

Comments
 (0)