Circular Linked List

Intro

Circular linked list can be treated as a normal linked list. Need to be more careful when iterating through the list. Instead of stopping at null, the while loop needs to stop before reaching the starting point.

Questions

  • Insert into a circular SLL

  • Convert BST into circular DLL

Last updated