SV
StudyVirus
Get our free app!Download Free

Data Structures

Computers · डेटा संरचनाएं · 15 facts

1

Array stores elements of same type in contiguous memory

2

Stack follows LIFO (Last In First Out) principle

3

Queue follows FIFO (First In First Out) principle

4

Linked List stores data in nodes connected by pointers

5

Tree is hierarchical data structure with root node

6

Binary Tree has maximum two children per node

7

Graph represents connections between nodes (vertices)

8

Hash Table uses key-value pairs for fast data access

9

Sorting algorithms arrange data in order (Bubble, Quick, Merge)

10

Searching algorithms find specific data (Linear, Binary)

11

Deque (Double-ended Queue) allows insertion/deletion from both ends

12

Binary Search Tree (BST) enables fast search, insert and delete

13

Merge Sort has O(n log n) time complexity

14

Bubble Sort is simplest sorting algorithm with O(n²) complexity

15

Binary Search works only on sorted arrays with O(log n) complexity