From 80a80ca58a93fe629ebb401c306aee214b6bbfef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=A2=A6=E5=87=8C=E6=B1=90?= Date: Tue, 10 Dec 2024 09:50:05 +0800 Subject: [PATCH] update .gitignore --- .gitignore | 2 +- .vscode/settings.json | 58 --------------------------- .vscode/tasks.json | 28 ------------- {mySTL => mystl}/container.h | 0 {mySTL => mystl}/my_deque.h | 0 {mySTL => mystl}/my_deque_test.cpp | 0 {mySTL => mystl}/my_list.h | 0 {mySTL => mystl}/my_list_test.cpp | 0 {mySTL => mystl}/my_skiplist.h | 0 {mySTL => mystl}/my_skiplist_test.cpp | 0 {mySTL => mystl}/my_stack.h | 0 {mySTL => mystl}/my_stack_test.cpp | 0 {mySTL => mystl}/my_vector.h | 0 {mySTL => mystl}/my_vector_test.cpp | 0 14 files changed, 1 insertion(+), 87 deletions(-) delete mode 100644 .vscode/settings.json delete mode 100644 .vscode/tasks.json rename {mySTL => mystl}/container.h (100%) rename {mySTL => mystl}/my_deque.h (100%) rename {mySTL => mystl}/my_deque_test.cpp (100%) rename {mySTL => mystl}/my_list.h (100%) rename {mySTL => mystl}/my_list_test.cpp (100%) rename {mySTL => mystl}/my_skiplist.h (100%) rename {mySTL => mystl}/my_skiplist_test.cpp (100%) rename {mySTL => mystl}/my_stack.h (100%) rename {mySTL => mystl}/my_stack_test.cpp (100%) rename {mySTL => mystl}/my_vector.h (100%) rename {mySTL => mystl}/my_vector_test.cpp (100%) 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