add solution of hw1

This commit is contained in:
JamesFlare1212
2025-01-20 01:58:19 -05:00
parent f40714a01e
commit 0dd22a2682
7 changed files with 349 additions and 9 deletions

22
.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,22 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "nyplaylists",
"type": "cppdbg",
"request": "launch",
"program": "${fileDirname}/${fileBasenameNoExtension}", // 指向你的可执行文件
"args": [
"playlist_tiny2.txt",
"actions2.txt",
"output.txt",
"debug"
],
"cwd": "${fileDirname}",
"environment": [],
"MIMode": "gdb",
"miDebuggerPath": "/usr/bin/gdb",
"preLaunchTask": "C/C++: g++ build active file"
}
]
}