Skip to content

Commit 99bf989

Browse files
committed
chore:<Image> 404 image add
1 parent 624a896 commit 99bf989

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

src/app/core/algorithms/backtracking-meta-data.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ const backtracking = {
1717
at 'A' and we divided our problem into three smaller sub-probelms 'B', 'D' and 'F'. And using this sub-problem, we have three
1818
possible path to get to our solution -- 'C', 'E', & 'G'.`,
1919

20-
example:'assets/ds-image/backtracking.jpg',
20+
example:'assets/ds-image/DSA1.jpg',
2121

2222
properties:[
2323
`A backtracking algorithm uses the depth-first search method. When it starts exploring the solutions, a bounding function is

src/app/core/algorithms/greedy-meta-data.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ const greedyData = {
88
This algorithm may not produce the best result for all the problems. It's because it always goes for the local best
99
choice to produce the global best result.
1010
`,
11-
example: 'assets/ds-image/greedy.jpg',
11+
example: 'assets/ds-image/DSA1.jpg',
1212
properties:[
1313
`<b>Greedy Choice Property:</b> If an optimal solution to the problem can be found by choosing the best choice at
1414
each step without reconsidering the previous steps once chosen, the problem can be solved using a greedy approach.

src/app/core/algorithms/sorting-meta-data.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,8 @@ const selectionSortData = {
5858
Initially, the sorted part is empty and the unsorted part is the entire list. <br>
5959
The smallest element is selected from the unsorted array and swapped with the leftmost element, and that element becomes
6060
a part of the sorted array. This process continues moving unsorted array boundary by one element to the right.`,
61-
flowChart:"assets/ds-image/selection-sort.jpg",
62-
explainImage:"assets/ds-image/explainImage.jpg",
61+
flowChart:"assets/ds-image/DSA1.jpg",
62+
explainImage:"assets/ds-image/DSA1.jpg",
6363
workingProcedure:[
6464
'Initialize minimum value(minValue) to location 0.',
6565
'Traverse the array to find the minimum element in the array.',

src/assets/ds-image/DSA1.jpg

13.1 KB
Loading

0 commit comments

Comments
 (0)