Concepts in data structures using C++
| Problem | Solution |
|---|---|
| Building a sorted linked list | ll-sorted-linked-list.cpp |
| Store linked list using arrays | ll-sorted-linked-list.cpp |
| Add a new item at the head | ll-add-to-head.cpp |
| Add a new item to the tail | ll-add-to-tail.cpp |
| Delete first item | ll-add-to-tail.cpp |
| Delete last item | ll-add-to-tail.cpp |
