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

@@ -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) {
}