Binary tree is a type of tree structure where each node contains upto 2 child nodes. A single node cant point to more than 2 nodes. the above image…
Read moreTree is a data structure just like stack, queues, linked list. but it is somewhat different from these data structures as it is a type of non-…
Read moreQueue is just like the stack with the first in and first out principle. In the stack we say pop and push for adding and deleting an element, but in t…
Read moreXOR linked list is basically a memory efficient doubly linked list. in doubly linked list a node was containing 3 values that is pointer to previou…
Read moreThe doubly linked list is just like the simply linked list with a minor difference of storing the reference of the previous node in it. so in the dou…
Read moreIt is basically the list where elements contain the address or references of other nodes in the list. so in a linked list, the elements can be repre…
Read more
Social Plugin