Linked list
-
Linked ListAlgoDS/DataStructure 2020. 1. 16. 22:55
1. Overview A linked list is a linear data structure where each element is a separate object. Also, each element that is also called as a node of the Left comprises two items that are data and the reference to the next node. The most important feature of the lean left is that it is of variable size. 2. Description 2.1 Difference between the linked list and array 2.1.1 Separated object First and ..
-
Choosing the appropriate Data StructureAlgoDS/DataStructure 2019. 9. 4. 21:14
1. Overview Data structures are the way to store and retrieve data like accessing data using an index in an array or a named key to store and retrieve information from a dictionary. Choosing the appropriate data structure enhancing inputting, processing, maintaining, retrieving information. For performance, the developer should choose the right data structure. 2. Description Data Structure Descr..