A project related to linked lists
Here in this repo I am trying to display the use of doubly linked list in Cpp, by using a president, secretary, and a few members as an example. I have used President as the head node, Secretary as the tail node and the Members as all the nodes in between
I have also concatenated the nodes defined inside the function
void pinnacle::concate(pinnacle p,pinnacle p1)
Where p and p1 are the objects created respectively
And reversed the node defined inside
void pinnacle::reverse(node *p)
One can also search for a node or also display the nodes respectively