fix: chamges in the code

This commit is contained in:
Tishasoumya-02
2021-09-07 22:23:10 +05:30
parent 36273ebb57
commit 971e9593ec

View File

@@ -16,7 +16,7 @@
* happens. And then we move the prev and current pointers one step forward.
* Then the head node is made to point to the last node (prev pointer) after
* completion of an iteration.
* Graphic Explanation:https://bit.ly/38JLVRd
* Graphic Explanation:https://bit.ly/3nbVrFe
*/
#include <iostream>/// for I/O operations
#include <memory> /// for dynamic memory
@@ -134,7 +134,7 @@ void list::display() {
std::cout << node->val << "\t";
node = node->next;
}
std::cout << "\n";
std::cout << std::endl;
}