We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0b8ee81 commit 3f11b60Copy full SHA for 3f11b60
16 Algorithm Design Techniques/notes.txt
@@ -1 +1,16 @@
1
+There are many algorithm design paradigms for solving problems. They can be classified as shown below:
2
3
+1) Classification by Implementation:
4
+
5
+a) Recursion and Iteration
6
+b) Procedural or Non-procedural(We ask for something without implementing it)
7
+c) Serial or parallel or distributed
8
+d) Deterministic or Non-deterministic(guesses the best solution using heuristics)
9
+e) Exact or Approximate
10
11
+2) Classification by Design Method
12
+a) Greedy
13
+b) DP
14
+c) DC
15
+d) Linear programming
16
+e) Reduction
0 commit comments