Skip to content

Commit 199e334

Browse files
committed
Day-10- BST predeccesor and successor algo + stack implementation
1 parent 3546b7b commit 199e334

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

include/list.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -309,6 +309,6 @@ namespace algo {
309309
_tail->prev = _head;
310310
}
311311
}; //end of class List
312-
}; //end of namespace algo
312+
} //end of namespace algo
313313

314314
#endif

include/mergeSort.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,6 @@ namespace algo {
6161
__merge( list, start, mid, end);
6262
}
6363
}
64-
}; //end of namespace algo
64+
} //end of namespace algo
6565

6666
#endif

include/selectionSort.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,5 +44,5 @@ namespace algo {
4444
}
4545
}
4646
}
47-
}; //end of namespace algo
47+
} //end of namespace algo
4848
#endif

0 commit comments

Comments
 (0)