- Prim’s algorithm for finding MST (Minimum Spanning Tree)
- Kruskal’s algorithm for finding MST(Minimum Spanning Tree)
- Minimum Spanning Tree (MST)
- Depth-first search
- Breadth-first search
- Representations of graphs
- AVL Tree
- External Sorting(Merge Sort)
- Shell Sort
- Heap Sort
- Quick Sort
- Selection Sort
- Insertion Sort
- Bubble Sort
- Sorting
- Searching (Sequential and Binary search)
- Threaded Binary Tree
- Binary Search Tree
- Binary Tree Traversal
- Linked Implementation of Binary Trees
- Array Implementation of Binary Trees
- Binary Tree
- Types of Trees
- Tree
- Linked Queue
- Linked Stack
- Representation of sparse matrix using linked list
- Circular Linked List
- Doubly Linked list
- Types of Linked Lists
- Linked List traversal
- Linked Lists
- Priority Queue
- Deque
- Multi-queues
- Circular Queue
- Queues
- Simulating recursion using stack (Eliminating recursion)
- Iteration versus Recursion
- Recursive Functions
- Recursion
- Applications of stack
- Multiple Stacks
- Stack
- Analysis of algorithms
- Implementation of Data Structure
- Algorithm
- Data Structure Classification
- Introduction to Data Structure and it's Characteristics
Monday, October 30, 2023
Subscribe to:
Post Comments (Atom)
Prim’s algorithm for finding MST (Minimum Spanning Tree)
Prim's algorithm to find minimum cost spanning tree uses the greedy approach. Prim's algorithm, in contrast with Kruskal's algor...
-
Complexity Analysis of Heap Sort: • Worst Case Time Complexity: O(n*log n) • Best Case Time Complexity: O(n*log n) • Aver...
-
A binary tree 1. is either an empty tree or 2. consists of a node, called root , and two children, left and right , each of which is i...
-
If a programming language does not support recursion or one needs a non-recursive code, then a recursive code can be translated to a non-rec...
No comments:
Post a Comment