Author thumbnail

Edu Desire

Design And Analysis of Algorithms (DAA)

8,271 views
73 items
Last updated on Dec 27, 2022
public playlist
What is Algorithm With Full Information in hindi | Introduction of Desing And Analysis of algorithms
11:42
Need of Algorithms | How to Analyze an Algorithm | Types of Algorithm | DAA #algorithm
19:21
What is Time Complexity | Types of Time Complexity with Examples | DAA
11:36
What is Space Complexity | Types of Space Complexity with Examples | DAA
10:40
Asymptotic Notations | Big O | Big Omega | Theta Notations | Most Imp Topic Of Algorithm | DAA
14:30
Analyzing Control Structure part-1 | Sequencing and If than Else | Analysis and Design of Algorithms
8:06
Analyzing Control Structure part-2 | For and While loops | Analysis and Design of Algorithms
11:21
Recurrence Relation [ T(n)= 3T(n/2) + n^2 ] | Master Theorem | Example#1 | Algorithm
9:51
Recurrence Relation [ T(n)= 2T(n/2) + nlogn ] | Master Theorem | Example#2 | Algorithm
7:00
Recurrence Relation [ T(n)= 2T(n/4) + n^0.51 ] | Master Theorem | Example#3 | Algorithm
8:09
Recurrence Relation [ T(n)= √2T(n/2) + logn ] | Master Theorem | Example#4 & #5 | Algorithm
7:15
Recurrence Relation [ T(n)= 3T(n/2) + n/2 ] | Master Theorem | Example#6 | Algorithm
6:25
Recurrence Relation [ T(n)= 2T(n/2) + n ] | Recursion Tree Method | Example#1 | Algorithm
13:52
Recurrence Relation [ T(n)= 2T(n/2) + C.n ] | Recursion Tree Method | Example#2 | Algorithm
7:13
Recurrence Relation [ T(n)= 3T(n/4) + C.n^2 ] | Recursion Tree Method | Example#3 | Algorithm
9:41
Selection Sort | Space & Time Complexity(Best, Avg & Worst) Analysis | Algorithm with #examples
8:07
Merge Sort | Space & Time Complexity(Best, Avg & Worst) Analysis | Algorithm with #examples
11:28
Bubble Sort | Space & Time Complexity(Best, Avg & Worst) Analysis | Algorithm with #examples
19:59
Insertion Sort | Space & Time Complexity(Best, Avg & Worst) Analysis | Algorithm with #examples
10:10
Radix Sort | Space & Time Complexity(Best, Avg & Worst) Analysis | Algorithm with #examples
8:51
Heap Sort | Space & Time Complexity(Best, Avg & Worst) Analysis | Algorithm with #examples
22:50
Quick Sort | Space & Time Complexity(Best, Avg & Worst) Analysis | Algorithm with #examples
11:30
Introduction to B-Tree | Searching in B-Tree with examples in Hindi | Properties & Operations b tree
15:54
Insertion operation on B-Tree with examples in Hindi | b tree order 3 examples
11:17
Introduction to Red Black Tree | Property of Red-Black Tree | Operations on Red-Black Tree Examples
21:11
Binomial Heap And Binomial Tree | Properties of the binomial tree with examples | DAA
10:46
Introduction to Binomial Heap | Properties of the Binomial Heap with examples | Representation | DAA
8:52
Operation of Binomial Heap | Union or Merging of two binomial heaps with examples | DAA
13:30
Operation of Binomial Heap | Inserting an element in binomial heaps with examples | DAA
7:31
Operation of Binomial Heap | Extracting the minimum key in binomial heaps with examples | DAA
7:25
Operation of Binomial Heap | Decreasing a key in binomial heaps with examples | DAA
8:40
Operation of Binomial Heap | Delete a node from the binomial heaps with examples | DAA
12:25
Fibonacci Heap | Fibonacci Heap Memory Representation | Fibonacci Heap Properties | DAA
17:32
Fibonacci Heap Operations | Create Fibonacci Heap| Inserting node| Finding Minimum | Union | DAA
9:37
Fibonacci Heap Operations | Extract Min operation on Fibonacci Heap | Union | DAA
16:57
Fibonacci Heap Operations | Decreasing a key operation on Fibonacci Heap | Delete a Node | DAA
12:52
Trie Data Structure | Application of Trie Data Structure | Examples | DAA
9:22
Trie Data Structure | Trie Data Structure Property | Examples | DAA
10:05
Divide and Conquer Algorithms| DAA
8:13
Linear Search Algorithm with example | Searching Algorithm in DAA
7:31
Binary Search Algorithm with example | Searching Algorithm in DAA
10:14
The Introduction to Convex Hull | Process to find Convex Hull in Hindi | DAA
11:42
Convex Hull Problem using Divide and Conquer in Algorithm in Hindi | Examples | DAA
13:14
Matrix Multiplication | Divide and Conquer Approach | Conventional Approach | Strassen’s | DAA
6:08
Introduction to Greedy Techniques With Example | What is Greedy Techniques | DAA
10:20
What is Spanning Tree and Minimum Spanning Tree with Examples in Hindi | Algorithm | DAA
8:33
Prim's Algorithm for Minimum Cost Spanning Tree With examples in Hindi | DAA
8:48
Practice Problems Based on Prim's Algorithm | Example | DAA
6:36
Kruskal's Algorithm for Minimum Spanning Tree with examples in Hindi | Algorithm | DAA
11:14
Dijkstra's Algorithm - Single Source Shortest Path - Greedy Method | Examples | DAA
14:47
Dijkstra's Algorithm practice problems - Single Source Shortest Path - Greedy Method | Examples
13:33
Bellman Ford Algorithm | Dijkstra's Vs Bellman Ford | Single Source Shortest | DAA
11:36
How Bellman Ford's Algorithm Works | Practices problem based on Bellman Ford's algorithm | DAA
11:53
Bellman Ford's Algorithm | Practices problem based on Bellman Ford's algorithm | DAA
12:30
Knapsack Problem With Example | Greedy Techniques | Algorithm in DAA
10:24
Fractional Knapsack Problem  |  Practice Problem based on Fractional knapsack problem | daa
13:31
Introduction to Dynamic Programming | Greedy Vs Dynamic Programming | Algorithm(DAA)
11:03
0/1 knapsack problem using dynamic programming | DAA
8:50
0/1 Knapsack Problem With Example | Dynamic Programming | Algorithm in DAA
17:35
Introduction to All Pair Shortest Path (Floyd Warshall Algorithm) | DAA
7:20
Floyd Warshall algorithm Working with example | All Pair Shortest Path Algorithm | Daa
25:40
Introduction to Backtracking | Backtracking Algorithm | Backtracking vs Brute Force Method
13:37
Introduction to Graph Coloring Problem  | Backtracking Algorithm | DAA
5:23
Graph Coloring, Chromatic Number | Example | GRAPH THEORY | DAA
12:36
(Part-1) Practice Problems Based on Finding Chromatic Number of a Graph | Graph Coloring
9:52
(Part-2) Practice Problems Based on Finding Chromatic Number of a Graph | Graph Coloring
5:27
N Queens Problem Using Backtracking | n queens Problem | Backtracking Algorithm | DAA
12:22
Find a Hamiltonian cycle using Backtracking Method with examples | Hamiltonian Path & Circuit
10:02
Hamiltonian Graph with examples | Hamiltonian Path & Circuit
9:01
Sum of Subset Problem Using Backtracking | Backtracking Algorithm | DAA
11:24
Branch & Bound Algorithm with Example |  Explanation of B&B with example | DAA
14:14
Introduction to Traveling Salesman Problem with examples | Daa
7:39
Traveling Salesman Problem Using Branch & Bound | Practice Problem of Traveling Salesman problem
21:48