Skip to content

Commit f6cd85f

Browse files
authored
Merge pull request #28 from PANFACTORY/develop
👍 Nodeクラスに配列サイズと子ノードのキー一覧を返すメソッドを追加
2 parents d42fd87 + 9514520 commit f6cd85f

5 files changed

Lines changed: 417 additions & 204 deletions

File tree

.commit_template

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
# ==== Commit Messages ====
2+
3+
# ==== Commit Messages(Template) ====
4+
# :emoji: #Issue番号 変更内容
5+
# 例) :+1: #438 コメント追加
6+
# 👍 #438 コメント追加
7+
# ==== Prefix ====
8+
# :fix: バグ修正
9+
# :hotfix: クリティカルなバグ修正
10+
# :add: 新規機能・新規ファイル追加
11+
# :feat: feature
12+
# :update: バグではない機能修正
13+
# :change: 仕様変更による機能修正
14+
# :docs: ドキュメントのみ修正
15+
# :disable: 無効化
16+
# :remove(delete): ファイル削除、コードの一部を取り除く
17+
# :rename: ファイル名の変更
18+
# :upgrade: バージョンアップ
19+
# :revert: 修正取り消し
20+
# :style: 空白、セミコロン、行、コーディングフォーマットなどの修正
21+
# :refactor(clean,improve): リファクタリング
22+
# :test: テスト追加や間違っていたテストの修正
23+
# :chore: ビルドツールやライブラリで自動生成されたものをコミットするとき
24+
25+
# ==== Emojis ====
26+
# 🐛 :bug: バグ修正
27+
# 👍 :+1: 機能改善
28+
# ✨ :sparkles: 部分的な機能追加
29+
# 🎨 :art: デザイン変更のみ
30+
# 💢 :anger: コンフリクト
31+
# 🚧 :construction: WIP
32+
# 📝 :memo: 文言修正
33+
# ♻️ :recycle: リファクタリング
34+
# 🔥 :fire: 不要な機能・使われなくなった機能の削除
35+
# 💚 :green_heart: テストやCIの修正・改善
36+
# 👕 :shirt: Lintエラーの修正やコードスタイルの修正
37+
# 🚀 :rocket: パフォーマンス改善
38+
# 🆙 :up: 依存パッケージなどのアップデート
39+
# 👮 :cop: セキュリティ関連の改善
40+
# ⚙ :gear: config変更
41+
# 📚 :books: ドキュメント

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
1-
.vscode
1+
.vscode/*
2+
!settings.json
23
build

.vscode/settings.json

Lines changed: 84 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,84 @@
1+
{
2+
"[cpp]": {
3+
"editor.defaultFormatter": "ms-vscode.cpptools"
4+
},
5+
"[c]": {
6+
"editor.defaultFormatter": "ms-vscode.cpptools"
7+
},
8+
"editor.formatOnSave": true,
9+
"C_Cpp.clang_format_style": "{ BasedOnStyle: Google, IndentWidth: 4 }",
10+
"files.associations": {
11+
"algorithm": "cpp",
12+
"array": "cpp",
13+
"cmath": "cpp",
14+
"cstddef": "cpp",
15+
"cstdint": "cpp",
16+
"cstdio": "cpp",
17+
"cstdlib": "cpp",
18+
"cstring": "cpp",
19+
"cwchar": "cpp",
20+
"exception": "cpp",
21+
"fstream": "cpp",
22+
"initializer_list": "cpp",
23+
"ios": "cpp",
24+
"iosfwd": "cpp",
25+
"iostream": "cpp",
26+
"istream": "cpp",
27+
"iterator": "cpp",
28+
"limits": "cpp",
29+
"memory": "cpp",
30+
"new": "cpp",
31+
"ostream": "cpp",
32+
"sstream": "cpp",
33+
"stdexcept": "cpp",
34+
"streambuf": "cpp",
35+
"string": "cpp",
36+
"system_error": "cpp",
37+
"tuple": "cpp",
38+
"type_traits": "cpp",
39+
"typeinfo": "cpp",
40+
"utility": "cpp",
41+
"vector": "cpp",
42+
"xfacet": "cpp",
43+
"xiosbase": "cpp",
44+
"xlocale": "cpp",
45+
"xlocinfo": "cpp",
46+
"xlocnum": "cpp",
47+
"xmemory": "cpp",
48+
"xmemory0": "cpp",
49+
"xstddef": "cpp",
50+
"xstring": "cpp",
51+
"xtr1common": "cpp",
52+
"xutility": "cpp",
53+
"any": "cpp",
54+
"atomic": "cpp",
55+
"cctype": "cpp",
56+
"chrono": "cpp",
57+
"condition_variable": "cpp",
58+
"ctime": "cpp",
59+
"deque": "cpp",
60+
"forward_list": "cpp",
61+
"functional": "cpp",
62+
"iomanip": "cpp",
63+
"list": "cpp",
64+
"locale": "cpp",
65+
"map": "cpp",
66+
"mutex": "cpp",
67+
"numeric": "cpp",
68+
"optional": "cpp",
69+
"ratio": "cpp",
70+
"set": "cpp",
71+
"string_view": "cpp",
72+
"xthread": "cpp",
73+
"thread": "cpp",
74+
"unordered_map": "cpp",
75+
"unordered_set": "cpp",
76+
"variant": "cpp",
77+
"xhash": "cpp",
78+
"xlocbuf": "cpp",
79+
"xlocmes": "cpp",
80+
"xlocmon": "cpp",
81+
"xloctime": "cpp",
82+
"xtree": "cpp"
83+
}
84+
}

0 commit comments

Comments
 (0)