adding comments

This commit is contained in:
Jidong Xiao
2024-02-20 01:51:07 -05:00
parent d35f2a5777
commit 16389029ae
2 changed files with 3 additions and 0 deletions

View File

@@ -54,6 +54,8 @@ $ ./a.out
**To complete this checkpoint**, explain to a TA your implementation and show the output of your program.
<!--TODO: how about memory leaks?-->
<!--## Checkpoint 3: Debugging a Merge Sort program.
*estimate: 30-40 minutes*

View File

@@ -12,6 +12,7 @@ public:
};
// function to merge two sorted doubly linked lists
// this function returns a pointer pointing to the head node of the merged list.
template <class T>
Node<T>* mergeLists(Node<T>* head_A, Node<T>* head_B) {
}