Tag: Data Structures

  • CIRCULAR LINKED LIST

    In CIRCULAR LINKED LIST all the nodes in the linked list are connected circularly. The first and the last node are connected, the NULL is not present in the Circular linked list as the LAST NODE will be connected with the FIRST NODE.  A circular linked list is of TWO TYPES:  1) Circular single linked list: A Mix of a…

  • Array & Linked List

    Array is a data structure in which elements are stored in continuous memory location (memory representation ), continues allocation of elements takes place in arrays, Linked list consist of Data and Reference. Array has random access permissions and Link list has sequential access permissions. Both Array & Linked List organizes data differently. Insertion and deletion process…