Data Structures-Analysis of algorithms, q, W, 0, o, w notations ; Sequential and linked
representations, Lists, Stacks, and queues;
Data Structures
https://en.wikipedia.org/wiki/Data_structure
https://www.tutorialspoint.com/data_structures_algorithms/data_structures_basics.htm
https://www.javatpoint.com/data-structure-structure
(you will get your necessary topics here(above link) like array sorting etc just browse)
Data Structures-Analysis of algorithms, q, W, 0, o, w notations
https://www.tutorialspoint.com/data_structures_algorithms/asymptotic_analysis.htm
https://www.geeksforgeeks.org/analysis-of-algorithms-set-3asymptotic-notations/
Sequential and linked representations,
Sequential :In computer science, sequential access means that a group of elements (such as data in a
memory array or a disk file or on magnetic tape data storage) is accessed in a predetermined, ordered
sequence. Sequential access is sometimes the only way of accessing the data.
linked : A linked list is a sequence of data structures, which are connected together via links. Linked List is a
sequence of links which contains items. Each link contains a connection to another link. Linked list is the
second most-used data structure after array.
https://www.includehelp.com/data-structure-tutorial/binary-tree-representation.aspx
http://webcache.googleusercontent.com/search?q=cache:http://orion.lcg.ufrj.br/Dr.Dobbs/books/b
ook2/algo02a7.htm
linked
https://www.cs.cmu.edu/~adamchik/15-121/lectures/Linked%20Lists/linked%20lists.html
https://www.programiz.com/dsa/linked-list-types
What is the difference between Sequential Allocation and Linked Allocation
http://www.xpode.com/ShowArticle.aspx?Articleid=282
Lists, Stacks, and queues;
http://homes.sice.indiana.edu/yye/lab/teaching/spring2014-C343/lists.php
https://www.cs.cmu.edu/~adamchik/15-
121/lectures/Stacks%20and%20Queues/Stacks%20and%20Queues.html
https://en.wikibooks.org/wiki/Data_Structures/Stacks_and_Queues
(Stacks & Queues{above links})