summaryrefslogtreecommitdiff
path: root/Assets/Algorithms/Recursion/Recursion_Greedy.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Assets/Algorithms/Recursion/Recursion_Greedy.cs')
-rw-r--r--Assets/Algorithms/Recursion/Recursion_Greedy.cs15
1 files changed, 15 insertions, 0 deletions
diff --git a/Assets/Algorithms/Recursion/Recursion_Greedy.cs b/Assets/Algorithms/Recursion/Recursion_Greedy.cs
new file mode 100644
index 0000000..f332640
--- /dev/null
+++ b/Assets/Algorithms/Recursion/Recursion_Greedy.cs
@@ -0,0 +1,15 @@
+using System;
+using System.Collections;
+using System.Collections.Generic;
+using AlgorithmCollection;
+using UnityEngine;
+
+// 贪心算法
+namespace AlgorithmCollection.Recursion
+{
+
+ public static partial class RecursionHelper
+ {
+
+ }
+} \ No newline at end of file