diff --git a/.gitignore b/.gitignore index e9f417f..824bd16 100644 --- a/.gitignore +++ b/.gitignore @@ -31,6 +31,6 @@ *.out *.app -.vscode/ +.vscode/* task.json settings.json \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json deleted file mode 100644 index a67939d..0000000 --- a/.vscode/settings.json +++ /dev/null @@ -1,58 +0,0 @@ -{ - "files.associations": { - "*.lsp": "lua", - "deque": "cpp", - "array": "cpp", - "atomic": "cpp", - "bit": "cpp", - "*.tcc": "cpp", - "cctype": "cpp", - "charconv": "cpp", - "clocale": "cpp", - "cmath": "cpp", - "compare": "cpp", - "concepts": "cpp", - "cstddef": "cpp", - "cstdint": "cpp", - "cstdio": "cpp", - "cstdlib": "cpp", - "ctime": "cpp", - "cwchar": "cpp", - "cwctype": "cpp", - "string": "cpp", - "unordered_map": "cpp", - "vector": "cpp", - "exception": "cpp", - "algorithm": "cpp", - "functional": "cpp", - "iterator": "cpp", - "memory": "cpp", - "memory_resource": "cpp", - "numeric": "cpp", - "optional": "cpp", - "random": "cpp", - "string_view": "cpp", - "system_error": "cpp", - "tuple": "cpp", - "type_traits": "cpp", - "utility": "cpp", - "format": "cpp", - "initializer_list": "cpp", - "iosfwd": "cpp", - "iostream": "cpp", - "istream": "cpp", - "limits": "cpp", - "new": "cpp", - "numbers": "cpp", - "ostream": "cpp", - "span": "cpp", - "stdexcept": "cpp", - "streambuf": "cpp", - "text_encoding": "cpp", - "typeinfo": "cpp", - "variant": "cpp", - "cassert": "cpp", - "cstdarg": "cpp" - }, - "Codegeex.RepoIndex": true -} \ No newline at end of file diff --git a/.vscode/tasks.json b/.vscode/tasks.json deleted file mode 100644 index 6f3c8cc..0000000 --- a/.vscode/tasks.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "tasks": [ - { - "type": "cppbuild", - "label": "C/C++: g++.exe 生成活动文件", - "command": "e:\\mingw64\\bin\\g++.exe", - "args": [ - "-fdiagnostics-color=always", - "-g", - "${file}", - "-o", - "${fileDirname}\\${fileBasenameNoExtension}.exe" - ], - "options": { - "cwd": "e:\\mingw64\\bin" - }, - "problemMatcher": [ - "$gcc" - ], - "group": { - "kind": "build", - "isDefault": true - }, - "detail": "调试器生成的任务。" - } - ], - "version": "2.0.0" -} \ No newline at end of file diff --git a/mySTL/container.h b/mystl/container.h similarity index 100% rename from mySTL/container.h rename to mystl/container.h diff --git a/mySTL/my_deque.h b/mystl/my_deque.h similarity index 100% rename from mySTL/my_deque.h rename to mystl/my_deque.h diff --git a/mySTL/my_deque_test.cpp b/mystl/my_deque_test.cpp similarity index 100% rename from mySTL/my_deque_test.cpp rename to mystl/my_deque_test.cpp diff --git a/mySTL/my_list.h b/mystl/my_list.h similarity index 100% rename from mySTL/my_list.h rename to mystl/my_list.h diff --git a/mySTL/my_list_test.cpp b/mystl/my_list_test.cpp similarity index 100% rename from mySTL/my_list_test.cpp rename to mystl/my_list_test.cpp diff --git a/mySTL/my_skiplist.h b/mystl/my_skiplist.h similarity index 100% rename from mySTL/my_skiplist.h rename to mystl/my_skiplist.h diff --git a/mySTL/my_skiplist_test.cpp b/mystl/my_skiplist_test.cpp similarity index 100% rename from mySTL/my_skiplist_test.cpp rename to mystl/my_skiplist_test.cpp diff --git a/mySTL/my_stack.h b/mystl/my_stack.h similarity index 100% rename from mySTL/my_stack.h rename to mystl/my_stack.h diff --git a/mySTL/my_stack_test.cpp b/mystl/my_stack_test.cpp similarity index 100% rename from mySTL/my_stack_test.cpp rename to mystl/my_stack_test.cpp diff --git a/mySTL/my_vector.h b/mystl/my_vector.h similarity index 100% rename from mySTL/my_vector.h rename to mystl/my_vector.h diff --git a/mySTL/my_vector_test.cpp b/mystl/my_vector_test.cpp similarity index 100% rename from mySTL/my_vector_test.cpp rename to mystl/my_vector_test.cpp