Posts

Showing posts from April, 2020

Review

Data Structures means of organizing and storing data in computers so that we can perform operations on stored data more efficiently. Common example of data structures : 1.      Array                : Structure which hold items of the same data 2.      Linked list       : Structure that link items in linear order 3.      Stacks              : Structure that do Last In First Out to it’s element 4.      Queues                         : Structure that do First In First Out to it’s element 5.      Hash Tables     : Structure that stores value with its key 6.      Binary Trees ...