Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit c7046b8

Browse files
committed
Q16-34
1 parent 90bd18e commit c7046b8

File tree

18 files changed

+611
-15
lines changed

18 files changed

+611
-15
lines changed

‎README.md‎

Lines changed: 19 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,19 @@
1515
| 13| [罗马数字转整数](https://leetcode-cn.com/problems/roman-to-integer/) | [romanToInt](./string/leetcode/easy/romanToInt.h) | <font color=green>easy</font> ||
1616
| 14| [最长功能前缀](https://leetcode-cn.com/problems/longest-common-prefix/) | [longestCommonPrefix](./string/leetcode/easy/longestCommonPrefix.h) | <font color=green>easy</font> ||
1717
| 15 | [三数之和](https://leetcode-cn.com/problems/3sum/) | [3sum](./array/leetcode/medium/3sum.h) | <font color=orange> medium </font> ||
18+
| 16 | [最接近的三数之和](https://leetcode-cn.com/problems/3sum-closest) | [3SumClosest](./array/leetcode/medium/3SumClosest.h) | <font color=orange> medium </font> ||
19+
| 17 | [电话号码的字母组合](https://leetcode-cn.com/problems/letter-combinations-of-a-phone-number/) | [letter_combinations_of_a_phone_number](./backtracking/leetcode/medium/letter_combinations_of_a_phone_number.h) | <font color=orange> medium </font> ||
20+
| 19 | [ 删除链表的倒数第N个节点](https://leetcode-cn.com/problems/remove-nth-node-from-end-of-list)| [removeNthFromEnd](./linkedList/leetcode/removeNthFromEnd.h) | <font color=orange> medium </font>||
1821
| 20 | [有限的括号](https://leetcode-cn.com/problems/valid-parentheses/)| [isValid](./stack+queue/leetcode/easy/isValid.h) | <font color=green>easy</font> ||
1922
| 21 | [合并两个有序链表](https://leetcode-cn.com/problems/merge-two-sorted-lists)| [mergeTwoLists](./linkedList/leetcode/easy/mergeTwoLists.h) | <font color=green>easy</font> ||
23+
| 22 | [括号生成](https://leetcode-cn.com/problems/generate-parentheses/)| [generateParenthesis](./recursion/leetcode/medium/generateParenthesis.h) | <font color=orange> medium </font> ||
24+
| 24 | [两两交换链表中的节点](https://leetcode-cn.com/problems/swap-nodes-in-pairs)| [swapPairs](./linkedList/leetcode/medium/swapPairs.h) | <font color=orange> medium </font> ||
2025
| 26 | [删除排序数组中重复项](https://leetcode-cn.com/problems/remove-duplicates-from-sorted-array/) | [removeDuplicates](./array/leetcode/easy/removeDuplicates.h) | <font color=green>easy</font> ||
2126
| 27 | [移除元素](https://leetcode-cn.com/problems/remove-element/submissions/) | [removeElement](./array/leetcode/easy/removeElement.h) | <font color=green>easy</font> ||
2227
| 28| [实现 strStr()](https://leetcode-cn.com/problems/implement-strstr/) | [strStr](./string/leetcode/easy/strStr.h) | <font color=green>easy</font> ||
28+
| 31| [下一个排列](https://leetcode-cn.com/problems/next-permutation/) | [next_permutation](./other/leetcode/medium/next_permutation.h) | <font color=orange> medium </font>||
29+
| 33 | [搜索旋转排序数组](https://leetcode-cn.com/problems/search-in-rotated-sorted-array)| [searchInRotatedSortedArray](./bsearch/leetcode/medium/searchInRotatedSortedArray.h) | <font color=orange> medium </font> ||
30+
| 34 | [在排序数组中查找元素的第一个和最后一个位置](https://leetcode-cn.com/problems/find-first-and-last-position-of-element-in-sorted-array/)| [searchRange](./bsearch/leetcode/medium/searchRange.h) | <font color=orange> medium </font> ||
2331
| 35 | [搜索插入位置](https://leetcode-cn.com/problems/search-insert-position/) | [searchInsert](./array/leetcode/easy/searchInsert.h) | <font color=green>easy</font> ||
2432
| 53 | [最大子序和](https://leetcode-cn.com/problems/maximum-subarray/) | [maxSubArray](./array/leetcode/easy/maxSubArray.h) | <font color=green>easy</font> ||
2533
| 58| [最后一个单词的长度](https://leetcode-cn.com/problems/length-of-last-word) | [lengthOfLastWord](./string/leetcode/easy/lengthOfLastWord.h) | <font color=green>easy</font> ||
@@ -74,7 +82,8 @@
7482
| 189 | [旋转数组](https://leetcode-cn.com/problems/rotate-array/) | [rotate](./array/leetcode/easy/rotate.h) | <font color=green>easy</font> ||
7583
| 11 | [盛最多水的容器](https://leetcode-cn.com/problems/container-with-most-water/) | [maxArea](./array/leetcode/maxArea.h) | ✨✨ ||
7684
| 283 | [移动零](https://leetcode-cn.com/problems/move-zeroes/) | [moveZeroes](./array/leetcode/moveZeroes.h) |||
77-
85+
| 15 | [三数之和](https://leetcode-cn.com/problems/3sum/) | [3sum](./array/leetcode/medium/3sum.h) | <font color=orange> medium </font> ||
86+
| 16 | [最接近的三数之和](https://leetcode-cn.com/problems/3sum-closest) | [3SumClosest](./array/leetcode/medium/3SumClosest.h) | <font color=orange> medium </font> ||
7887

7988
## 剑指Offer
8089
| &emsp;题号&emsp; | 题目链接&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;| 答案链接&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;| &emsp;难度&emsp; | &emsp;完成度&emsp; |
@@ -97,7 +106,7 @@
97106
| 21 | [合并两个有序链表](https://leetcode-cn.com/problems/merge-two-sorted-lists)| [mergeTwoLists](./linkedList/leetcode/easy/mergeTwoLists.h) | <font color=green>easy</font> ||
98107
| 83 | [删除排序链表中的重复元素](https://leetcode-cn.com/problems/remove-duplicates-from-sorted-list/)| [deleteDuplicates](./linkedList/leetcode/easy/deleteDuplicates.h) | <font color=green>easy</font> ||
99108
| 141 | [环形链表](https://leetcode-cn.com/problems/linked-list-cycle)| [hasCycle](./linkedList/leetcode/easy/hasCycle.h) | <font color=green>easy</font> ||
100-
| 24 | [两两交换链表中的节点](https://leetcode-cn.com/problems/swap-nodes-in-pairs)| [swapPairs](./linkedList/leetcode/swapPairs.h) | ✨✨ ||
109+
| 24 | [两两交换链表中的节点](https://leetcode-cn.com/problems/swap-nodes-in-pairs)| [swapPairs](./linkedList/leetcode/medium/swapPairs.h) | ✨✨ ||
101110
| 142 | [环形链表 II](https://leetcode-cn.com/problems/linked-list-cycle-ii)| [detectCycle](./linkedList/leetcode/detectCycle.h) | ✨✨||
102111
| 206 | [ 反转链表](https://leetcode-cn.com/problems/reverse-linked-list/)| [reverseList](./linkedList/leetcode/reverseList.h) |||
103112
| 234 | [ 回文链表](https://leetcode-cn.com/problems/palindrome-linked-list)| [isPalindrome](./linkedList/leetcode/isPalindrome.h) |||
@@ -137,7 +146,7 @@
137146

138147
| &emsp;题号&emsp; | 题目链接&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;| 答案链接&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;| &emsp;难度&emsp; | &emsp;完成度&emsp; |
139148
| :--: | :--: | :----------------------------------------------------------- | :----------------------------------------------------------- | :------: |
140-
| 22 | [括号生成](https://leetcode-cn.com/problems/generate-parentheses/)| -- | ✨✨ | |
149+
| 22 | [括号生成](https://leetcode-cn.com/problems/generate-parentheses/)| [generateParenthesis](./recursion/leetcode/medium/generateParenthesis.h) | ✨✨ | |
141150

142151

143152
## 剑指Offer
@@ -158,7 +167,7 @@
158167
## leetcode
159168
| &emsp;题号&emsp; | 题目链接&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;| 答案链接&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;| &emsp;难度&emsp; | &emsp;完成度&emsp; |
160169
| :--: | :--: | :----------------------------------------------------------- | :----------------------------------------------------------- | :------: |
161-
| 33 | [搜索旋转排序数组](https://leetcode-cn.com/problems/search-in-rotated-sorted-array)| [searchInRotatedSortedArray](./bsearch/leetcode/searchInRotatedSortedArray.h) | ✨✨ ||
170+
| 33 | [搜索旋转排序数组](https://leetcode-cn.com/problems/search-in-rotated-sorted-array)| [searchInRotatedSortedArray](./bsearch/leetcode/medium/searchInRotatedSortedArray.h) | ✨✨ ||
162171
| 69 | [x 的平方根](https://leetcode-cn.com/problems/sqrtx/%E2%80%A8)| [mySqrt](./bsearch/leetcode/mySqrt.h) |||
163172
| 367 | [有效的完全平方数](https://leetcode-cn.com/problems/valid-perfect-square/)| [isPerfectSquare](./bsearch/leetcode/isPerfectSquare.h) |||
164173

@@ -304,13 +313,19 @@
304313
| 八皇后问题 | [eightQueens](./backtracking/eightQueens.h)||
305314
| 0-1背包问题 | [knapsack](./backtracking/knapsack.h)||
306315

316+
## leetcode
317+
| &emsp;题号&emsp; | 题目链接&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;| 答案链接&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;| &emsp;难度&emsp; | &emsp;完成度&emsp; |
318+
| :--: | :--: | :----------------------------------------------------------- | :----------------------------------------------------------- | :------: |
319+
| 17 | [电话号码的字母组合](https://leetcode-cn.com/problems/letter-combinations-of-a-phone-number/) | [letter_combinations_of_a_phone_number](./backtracking/leetcode/medium/letter_combinations_of_a_phone_number.h) | <font color=orange> medium </font> ||
320+
307321

308322
## 剑指Offer
309323
| &emsp;题号&emsp; | 题目链接&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;| 答案链接&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;| &emsp;难度&emsp; | &emsp;完成度&emsp; |
310324
| :--: | :--: | :----------------------------------------------------------- | :----------------------------------------------------------- | :------: |
311325
| -- | [剑指Offer(六十五):矩阵中的路径](https://www.nowcoder.com/practice/c61c6999eecb4b8f88a98f66b273a3cc?tpId=13&tqId=11218&tPage=4&rp=1&ru=%2Fta%2Fcoding-interviews&qru=%2Fta%2Fcoding-interviews%2Fquestion-ranking)| -- |||
312326
| -- | [剑指Offer(六十六):机器人的运动范围](https://www.nowcoder.com/practice/6e5207314b5241fb83f2329e89fdecc8?tpId=13&tqId=11219&tPage=4&rp=1&ru=%2Fta%2Fcoding-interviews&qru=%2Fta%2Fcoding-interviews%2Fquestion-ranking)| -- |||
313327

328+
314329
---------------
315330
# 分治算法
316331

‎alg-cpp.xcodeproj/project.pbxproj‎

Lines changed: 60 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -166,6 +166,9 @@
166166
093D6BFB22FBA0D000771DEC /* pascals_triangle.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = pascals_triangle.h; sourceTree = "<group>"; };
167167
093D6BFE22FBA5D200771DEC /* pascals_triangle_ii.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = pascals_triangle_ii.h; sourceTree = "<group>"; };
168168
093D6C0122FC704700771DEC /* best_time_to_buy_and_sell_stock.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = best_time_to_buy_and_sell_stock.h; sourceTree = "<group>"; };
169+
09421FF2230EE57F00A7BA67 /* generateParenthesis.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = generateParenthesis.h; sourceTree = "<group>"; };
170+
09421FF6231420AB00A7BA67 /* next_permutation.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = next_permutation.h; sourceTree = "<group>"; };
171+
09421FFA23142AEB00A7BA67 /* searchRange.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = searchRange.h; sourceTree = "<group>"; };
169172
0946B01522F68BA50043469D /* FirstNotRepeatingChar.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FirstNotRepeatingChar.h; sourceTree = "<group>"; };
170173
0946B01822F695CE0043469D /* ReverseSentence.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ReverseSentence.h; sourceTree = "<group>"; };
171174
0946B01B22F6A5BF0043469D /* StrToInt.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = StrToInt.h; sourceTree = "<group>"; };
@@ -192,6 +195,8 @@
192195
0969A71B22E607E800CA9347 /* string */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = string; sourceTree = BUILT_PRODUCTS_DIR; };
193196
0969A71D22E607E800CA9347 /* main.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = main.cpp; sourceTree = "<group>"; };
194197
0969A72222E6081500CA9347 /* matching.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = matching.h; sourceTree = "<group>"; };
198+
09771DA0230C44C5000F8AC3 /* 3SumClosest.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = 3SumClosest.h; sourceTree = "<group>"; };
199+
09771DA4230C4CAA000F8AC3 /* letter_combinations_of_a_phone_number.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = letter_combinations_of_a_phone_number.h; sourceTree = "<group>"; };
195200
0993E17022F3282B001E4308 /* minDepth.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = minDepth.h; sourceTree = "<group>"; };
196201
0993E17322F32CC0001E4308 /* hasPathSum.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = hasPathSum.h; sourceTree = "<group>"; };
197202
0993E17622F33B78001E4308 /* preorderTraversal.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = preorderTraversal.h; sourceTree = "<group>"; };
@@ -423,6 +428,7 @@
423428
isa = PBXGroup;
424429
children = (
425430
09132D8C230AF7140017E435 /* 3sum.h */,
431+
09771DA0230C44C5000F8AC3 /* 3SumClosest.h */,
426432
);
427433
path = medium;
428434
sourceTree = "<group>";
@@ -468,6 +474,39 @@
468474
path = easy;
469475
sourceTree = "<group>";
470476
};
477+
09421FF0230EE56800A7BA67 /* leetcode */ = {
478+
isa = PBXGroup;
479+
children = (
480+
09421FF1230EE57100A7BA67 /* medium */,
481+
);
482+
path = leetcode;
483+
sourceTree = "<group>";
484+
};
485+
09421FF1230EE57100A7BA67 /* medium */ = {
486+
isa = PBXGroup;
487+
children = (
488+
09421FF2230EE57F00A7BA67 /* generateParenthesis.h */,
489+
);
490+
path = medium;
491+
sourceTree = "<group>";
492+
};
493+
09421FF52314209B00A7BA67 /* medium */ = {
494+
isa = PBXGroup;
495+
children = (
496+
09421FF6231420AB00A7BA67 /* next_permutation.h */,
497+
);
498+
path = medium;
499+
sourceTree = "<group>";
500+
};
501+
09421FF92314275A00A7BA67 /* medium */ = {
502+
isa = PBXGroup;
503+
children = (
504+
3A5C8BDD22E1CEC400354740 /* searchInRotatedSortedArray.h */,
505+
09421FFA23142AEB00A7BA67 /* searchRange.h */,
506+
);
507+
path = medium;
508+
sourceTree = "<group>";
509+
};
471510
0946B02122F6B49E0043469D /* coding-interviews */ = {
472511
isa = PBXGroup;
473512
children = (
@@ -479,6 +518,7 @@
479518
0946B02A22F6B9370043469D /* recursion */ = {
480519
isa = PBXGroup;
481520
children = (
521+
09421FF0230EE56800A7BA67 /* leetcode */,
482522
0946B03022F6B9470043469D /* coding-interviews */,
483523
0946B02B22F6B9370043469D /* main.cpp */,
484524
);
@@ -550,6 +590,22 @@
550590
path = string;
551591
sourceTree = "<group>";
552592
};
593+
09771DA3230C4C8D000F8AC3 /* medium */ = {
594+
isa = PBXGroup;
595+
children = (
596+
09771DA4230C4CAA000F8AC3 /* letter_combinations_of_a_phone_number.h */,
597+
);
598+
path = medium;
599+
sourceTree = "<group>";
600+
};
601+
09771DA7230C5788000F8AC3 /* leetcode */ = {
602+
isa = PBXGroup;
603+
children = (
604+
09771DA3230C4C8D000F8AC3 /* medium */,
605+
);
606+
path = leetcode;
607+
sourceTree = "<group>";
608+
};
553609
0998EB8B22E75FB9005A01B5 /* dp */ = {
554610
isa = PBXGroup;
555611
children = (
@@ -563,6 +619,7 @@
563619
099EAEF322FFBE3D006437BD /* leetcode */ = {
564620
isa = PBXGroup;
565621
children = (
622+
09421FF52314209B00A7BA67 /* medium */,
566623
099EAEF422FFBE43006437BD /* easy */,
567624
);
568625
path = leetcode;
@@ -637,6 +694,7 @@
637694
09FC39202305A3F200F0A2AE /* medium */ = {
638695
isa = PBXGroup;
639696
children = (
697+
3A717DAA22DEFE28002DA2C2 /* swapPairs.h */,
640698
09FC39212305A42B00F0A2AE /* addTwoNumbers.h */,
641699
);
642700
path = medium;
@@ -741,7 +799,7 @@
741799
3A5C8BDC22E1CE3500354740 /* leetcode */ = {
742800
isa = PBXGroup;
743801
children = (
744-
3A5C8BDD22E1CEC400354740 /* searchInRotatedSortedArray.h */,
802+
09421FF92314275A00A7BA67 /* medium */,
745803
3A5C8BE022E1CF9300354740 /* mySqrt.h */,
746804
3A5C8BE322E1CFF800354740 /* isPerfectSquare.h */,
747805
);
@@ -848,7 +906,6 @@
848906
children = (
849907
09FC39202305A3F200F0A2AE /* medium */,
850908
0929C38022FE75F1006905B4 /* easy */,
851-
3A717DAA22DEFE28002DA2C2 /* swapPairs.h */,
852909
3A717DB022DF213F002DA2C2 /* detectCycle.h */,
853910
3A717DB322DF391C002DA2C2 /* reverseList.h */,
854911
3AAD2E6F22E00ADB006078A4 /* isPalindrome.h */,
@@ -861,6 +918,7 @@
861918
3AD40CCD22E9B4C7002D60A6 /* backtracking */ = {
862919
isa = PBXGroup;
863920
children = (
921+
09771DA7230C5788000F8AC3 /* leetcode */,
864922
0946B03D22F6CF030043469D /* coding-interviews */,
865923
3AD40CCE22E9B4C7002D60A6 /* main.cpp */,
866924
3AD40CD322E9B517002D60A6 /* eightQueens.h */,
Binary file not shown.
Lines changed: 91 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,91 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<Scheme
3+
LastUpgradeVersion = "1030"
4+
version = "1.3">
5+
<BuildAction
6+
parallelizeBuildables = "YES"
7+
buildImplicitDependencies = "YES">
8+
<BuildActionEntries>
9+
<BuildActionEntry
10+
buildForTesting = "YES"
11+
buildForRunning = "YES"
12+
buildForProfiling = "YES"
13+
buildForArchiving = "YES"
14+
buildForAnalyzing = "YES">
15+
<BuildableReference
16+
BuildableIdentifier = "primary"
17+
BlueprintIdentifier = "3AD40CCB22E9B4C7002D60A6"
18+
BuildableName = "backtracking"
19+
BlueprintName = "backtracking"
20+
ReferencedContainer = "container:alg-cpp.xcodeproj">
21+
</BuildableReference>
22+
</BuildActionEntry>
23+
</BuildActionEntries>
24+
</BuildAction>
25+
<TestAction
26+
buildConfiguration = "Debug"
27+
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
28+
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
29+
shouldUseLaunchSchemeArgsEnv = "YES">
30+
<Testables>
31+
</Testables>
32+
<MacroExpansion>
33+
<BuildableReference
34+
BuildableIdentifier = "primary"
35+
BlueprintIdentifier = "3AD40CCB22E9B4C7002D60A6"
36+
BuildableName = "backtracking"
37+
BlueprintName = "backtracking"
38+
ReferencedContainer = "container:alg-cpp.xcodeproj">
39+
</BuildableReference>
40+
</MacroExpansion>
41+
<AdditionalOptions>
42+
</AdditionalOptions>
43+
</TestAction>
44+
<LaunchAction
45+
buildConfiguration = "Debug"
46+
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
47+
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
48+
launchStyle = "0"
49+
useCustomWorkingDirectory = "NO"
50+
ignoresPersistentStateOnLaunch = "NO"
51+
debugDocumentVersioning = "YES"
52+
debugServiceExtension = "internal"
53+
allowLocationSimulation = "YES">
54+
<BuildableProductRunnable
55+
runnableDebuggingMode = "0">
56+
<BuildableReference
57+
BuildableIdentifier = "primary"
58+
BlueprintIdentifier = "3AD40CCB22E9B4C7002D60A6"
59+
BuildableName = "backtracking"
60+
BlueprintName = "backtracking"
61+
ReferencedContainer = "container:alg-cpp.xcodeproj">
62+
</BuildableReference>
63+
</BuildableProductRunnable>
64+
<AdditionalOptions>
65+
</AdditionalOptions>
66+
</LaunchAction>
67+
<ProfileAction
68+
buildConfiguration = "Release"
69+
shouldUseLaunchSchemeArgsEnv = "YES"
70+
savedToolIdentifier = ""
71+
useCustomWorkingDirectory = "NO"
72+
debugDocumentVersioning = "YES">
73+
<BuildableProductRunnable
74+
runnableDebuggingMode = "0">
75+
<BuildableReference
76+
BuildableIdentifier = "primary"
77+
BlueprintIdentifier = "3AD40CCB22E9B4C7002D60A6"
78+
BuildableName = "backtracking"
79+
BlueprintName = "backtracking"
80+
ReferencedContainer = "container:alg-cpp.xcodeproj">
81+
</BuildableReference>
82+
</BuildableProductRunnable>
83+
</ProfileAction>
84+
<AnalyzeAction
85+
buildConfiguration = "Debug">
86+
</AnalyzeAction>
87+
<ArchiveAction
88+
buildConfiguration = "Release"
89+
revealArchiveInOrganizer = "YES">
90+
</ArchiveAction>
91+
</Scheme>

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /