-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy path01_data_structures_introduction.cpp
37 lines (32 loc) · 1.18 KB
/
01_data_structures_introduction.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/*
TOPIC: Data Structures - Introduction
Data Structures
----------------
- Array
- Vector (Dynamic Array)
- Linked List
- Stack
- Queue
- Trees (Binary Tree & BST)
- Heaps (Priority Queue)
- Graphs
- Hashtables
- Tries
Advanced Data Structures [Used in Competitive Programming]
------------------------
- Segment Trees
- Fenwick Tree
- AVL Tree
Why do we need Data Structures(DS) ?
- Every DS has its own uniqueness/speciality because they are the containers that stores data.
- And depending upon the problem, we perform different operations
Like: insertion, deletion, searching, ordering
- Based on the above operations, each DS has its own Space & Time Complexity.
Eg: Suppose, there is a problem in which we have to store data in a sorted order.
Then, we have to make a choice that we should use heap or array ... or may be we should use some
sorting algorithm later on.
So, we have to make a tradeoff between Space & Time Complexity and choose the most relevnt DS.
What we will learn ?
- Implementaion of each data structure
- And their STL Implementation
*/