I need to break a singly linked list into smaller linked lists after every 2 nodes . The approach I thought was,
- create an array containign head pointers of n/2 objects
- Link hop the linked list and store the address in the array after every 2 nodes are encountered. Can there be a better approach for this?
Thanks.
