init commit

This commit is contained in:
2024-03-19 01:05:51 +08:00
commit 199bbf2628
393 changed files with 34883 additions and 0 deletions

50
archive/algorithm/.vscode/launch.json vendored Normal file
View File

@ -0,0 +1,50 @@
{
// 使用 IntelliSense 了解相关属性。
// 悬停以查看现有属性的描述。
// 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Debug_win_x86",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}\\debug\\${fileBasenameNoExtension}.exe",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
"environment": [],
"externalConsole": true,
"MIMode": "gdb",
"targetArchitecture": "x86",
"miDebuggerPath": "gdb.exe",
"preLaunchTask": "debug_win",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
]
},
{
"name": "Debug_linux_x86",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}\\debug\\${fileBasenameNoExtension}",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
"environment": [],
"externalConsole": false,
"MIMode": "gdb",
"preLaunchTask": "debug",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
]
}
]
}

13
archive/algorithm/.vscode/settings.json vendored Normal file
View File

@ -0,0 +1,13 @@
{
"files.associations": {
"stdio.h": "c",
"u_link_list.h": "c",
"math.h": "c",
"malloc.h": "c",
"string.h": "c",
"stdlib.h": "c",
"cmath": "c",
"limits": "c"
},
"C_Cpp.errorSquiggles": "Disabled"
}

60
archive/algorithm/.vscode/tasks.json vendored Normal file
View File

@ -0,0 +1,60 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "debug",
"type": "shell",
"command": "make",
"args": [
"build",
"DEBUG=TRUE",
"NAME=${fileBasenameNoExtension}",
"FILE=\"${file}\""
],
"group": "build",
"problemMatcher": {
"owner": "cpp",
"fileLocation": [
"relative",
"${workspaceRoot}"
],
"pattern": {
"regexp": "^(.*):(\\d+):(\\d+):\\s+(warning|error):\\s+(.*)$",
"file": 1,
"line": 2,
"column": 3,
"severity": 4,
"message": 5
}
}
},{
"label": "debug_win",
"type": "shell",
"command": "mingw32-make",
"args": [
"build",
"DEBUG=TRUE",
"NAME=${fileBasenameNoExtension}",
"FILE=\"${file}\""
],
"group": "build",
"problemMatcher": {
"owner": "cpp",
"fileLocation": [
"relative",
"${workspaceRoot}"
],
"pattern": {
"regexp": "^(.*):(\\d+):(\\d+):\\s+(warning|error):\\s+(.*)$",
"file": 1,
"line": 2,
"column": 3,
"severity": 4,
"message": 5
}
}
}
]
}