Skip to main content

Home/ EdTechTalk/ Group items tagged ##DataStructures

Rss Feed Group items tagged

eyssant

Data Structure Circular Singly Linked List - AlphaCodingSkills - 0 views

  •  
    A circular singly linked list is a linear data structure, in which the elements are stored in the form of a node. Each node contains two sub-elements. A data part that stores the value of the element and the next part that stores the pointer to the next node.
eyssant

Linked List Operations - Traverse, Insert and Delete - 0 views

  •  
    A linked list is a linear data structure, in which the elements are stored in the form of a node. Each node contains two sub-elements. A data part that stores the value of the element and next part that stores the pointer to the next node.
eyssant

Data Structure Linked List - AlphaCodingSkills - 0 views

  •  
    A linked list is a linear data structure, in which the elements are stored in the form of a node. Each node contains two sub-elements. A data part that stores the value of the element and next part that stores the pointer to the next node.
eyssant

Java.util.LinkedList Class - AlphaCodingSkills - 0 views

  •  
    Java.util package provides a LinkedList class which has Doubly-linked list implementation of the List and Deque interfaces. The class has all optional list operations, and permits all elements (including null). Operations that index into the list will traverse the list from the beginning or the end, whichever is closer to the specified index.
1 - 4 of 4
Showing 20 items per page