Skip to content

Commit f99f397

Browse files
committed
init
0 parents  commit f99f397

File tree

323 files changed

+19327
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

323 files changed

+19327
-0
lines changed

.DS_Store

8 KB
Binary file not shown.

.gitignore

+101
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,101 @@
1+
# Created by https://www.toptal.com/developers/gitignore/api/macos,visualstudiocode,c++
2+
# Edit at https://www.toptal.com/developers/gitignore?templates=macos,visualstudiocode,c++
3+
4+
### C++ ###
5+
# Prerequisites
6+
*.d
7+
8+
# Compiled Object files
9+
*.slo
10+
*.lo
11+
*.o
12+
*.obj
13+
14+
# Precompiled Headers
15+
*.gch
16+
*.pch
17+
18+
# Compiled Dynamic libraries
19+
*.so
20+
*.dylib
21+
*.dll
22+
23+
# Fortran module files
24+
*.mod
25+
*.smod
26+
27+
# Compiled Static libraries
28+
*.lai
29+
*.la
30+
*.a
31+
*.lib
32+
33+
# Executables
34+
*.exe
35+
*.out
36+
*.app
37+
38+
### macOS ###
39+
# General
40+
*.DS_Store
41+
.DS_Store
42+
.AppleDouble
43+
.LSOverride
44+
45+
# Icon must end with two \r
46+
Icon
47+
48+
49+
# Thumbnails
50+
._*
51+
52+
# Files that might appear in the root of a volume
53+
.DocumentRevisions-V100
54+
.fseventsd
55+
.Spotlight-V100
56+
.TemporaryItems
57+
.Trashes
58+
.VolumeIcon.icns
59+
.com.apple.timemachine.donotpresent
60+
61+
# Directories potentially created on remote AFP share
62+
.AppleDB
63+
.AppleDesktop
64+
Network Trash Folder
65+
Temporary Items
66+
.apdisk
67+
68+
### macOS Patch ###
69+
# iCloud generated files
70+
*.icloud
71+
72+
### VisualStudioCode ###
73+
*.vscode/*
74+
!.vscode/settings.json
75+
!.vscode/tasks.json
76+
!.vscode/launch.json
77+
!.vscode/extensions.json
78+
!.vscode/*.code-snippets
79+
*
80+
!*.*
81+
!*/
82+
*.dsym
83+
84+
# Local History for Visual Studio Code
85+
.history/
86+
87+
# Built Visual Studio Code Extensions
88+
*.vsix
89+
90+
### VisualStudioCode Patch ###
91+
# Ignore all local history of files
92+
.history
93+
.ionide
94+
95+
# Support for Project snippet scope
96+
.vscode/*.code-snippets
97+
98+
# Ignore code-workspaces
99+
*.code-workspace
100+
101+
# End of https://www.toptal.com/developers/gitignore/api/macos,visualstudiocode,c++

.idea/.gitignore

+8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/algorithm.iml

+9
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

+6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules.xml

+8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/vcs.xml

+6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.vscode/.DS_Store

6 KB
Binary file not shown.

.vscode/c_cpp_properties.json

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"configurations": [
3+
{
4+
"name": "Mac",
5+
"includePath": [
6+
"${workspaceFolder}/**"
7+
],
8+
"defines": [],
9+
"macFrameworkPath": [
10+
"/System/Library/Frameworks",
11+
"/Library/Frameworks"
12+
],
13+
"compilerPath": "/usr/bin/clang",
14+
"intelliSenseMode": "macos-gcc-arm64"
15+
}
16+
],
17+
"version": 4
18+
}

.vscode/launch.json

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
{
8+
"name": "g++ build and debug active file",
9+
"type": "lldb",
10+
"request": "launch",
11+
"program": "${fileDirname}/${fileBasenameNoExtension}",
12+
"args": [],
13+
"stopAtEntry": false,
14+
"cwd": "${workspaceFolder}",
15+
"environment": [],
16+
"externalConsole": true,
17+
"MIMode": "lldb",
18+
"preLaunchTask": "g++ build active file"
19+
}
20+
]
21+
}

.vscode/settings.json

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
"files.associations": {
3+
"ios": "cpp",
4+
"algorithm": "cpp",
5+
"vector": "cpp",
6+
"queue": "cpp",
7+
"iostream": "cpp",
8+
"deque": "cpp",
9+
"array": "c",
10+
"iterator": "c",
11+
"string": "c",
12+
"string_view": "c",
13+
"iosfwd": "cpp",
14+
"__hash_table": "cpp",
15+
"__split_buffer": "cpp",
16+
"bitset": "cpp",
17+
"initializer_list": "cpp",
18+
"stack": "cpp",
19+
"unordered_map": "cpp",
20+
"utility": "cpp",
21+
22+
23+
}
24+
}
25+
}

.vscode/tasks.json

+47
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
{
2+
"version": "2.0.0",
3+
"tasks": [
4+
{
5+
"type": "cppbuild",
6+
"label": "g++ build active file",
7+
"command": "/usr/bin/g++",
8+
"args": [
9+
"-std=c++17",
10+
"-g",
11+
"${file}",
12+
"-o",
13+
"${fileDirname}/${fileBasenameNoExtension}"
14+
],
15+
"options": {
16+
"cwd": "${fileDirname}"
17+
},
18+
"problemMatcher": [
19+
"$gcc"
20+
],
21+
"group": "build",
22+
"detail": "디버거에서 생성된 작업입니다."
23+
},
24+
{
25+
"type": "cppbuild",
26+
"label": "C/C++: clang++ 활성 파일 빌드",
27+
"command": "/usr/bin/clang++",
28+
"args": [
29+
"-g",
30+
"${file}",
31+
"-o",
32+
"${fileDirname}/${fileBasenameNoExtension}"
33+
],
34+
"options": {
35+
"cwd": "${fileDirname}"
36+
},
37+
"problemMatcher": [
38+
"$gcc"
39+
],
40+
"group": {
41+
"kind": "build",
42+
"isDefault": true
43+
},
44+
"detail": "디버거에서 생성된 작업입니다."
45+
}
46+
]
47+
}

.vscode/tempCodeRunnerFile.cpp

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
// for (int i = 1; i <= numinx; i++)
2+
// {
3+
// cout<<num[i]<<" ";
4+
// }
5+
// cout<<"\n";
6+
// for(int i=1;i<oprinx;i++){
7+
// cout<<opr[i]<<" ";
8+
// }

OS/.DS_Store

6 KB
Binary file not shown.

0 commit comments

Comments
 (0)