👨‍💻
Cracking-Interview
Ctrlk
  • Data Structures and Algorithms
  • Arrays
  • Linked List
  • Strings
  • Binary Tree
  • Stack and Queue
  • Hash Table
  • Binary Search
  • Binary Search Tree
  • Bit manipulation
  • Graph
    • 1.Maximum number of edges to be removed to contain exactly K connected components in the Graph
    • 2. Social Networking Graph
    • 3.The Flight Plan
    • 4.Is it a tree?
    • 5.Possible Bipartition
    • 6.Longest path in an undirected tree
    • 7.Keys and Rooms
    • 8.Is Graph Bipartite?
    • 9.Number of Islands
    • 10. Number of Provinces
    • 11.Surrounded Regions
    • 12. All Paths From Source to Target
    • 13.Word Ladder
    • 14.Rotting Oranges
    • 15.Course Schedule
    • 16.Course Schedule II
    • 17. Minimum Number of Vertices to Reach All Nodes
    • 18.Network Delay Time
    • 19. 01 Matrix
    • 20. Cheapest Flights Within K Stops
    • 21. Critical Connections in a Network
    • 22.Word Search
    • 23. Minimum Time to Collect All Apples in a Tree
    • 24. Time Needed to Inform All Employees
    • 25. As Far from Land as Possible
    • 26. Clone Graph
    • 27. Min Cost to Connect All Points
    • 28. Find the City With the Smallest Number of Neighbors at a Threshold Distance
    • 29. Number of Operations to Make Network Connected
    • 30. Open the Lock
    • 31. Word Search II
    • 32. Number of Ways to Arrive at Destination
    • 33. Knight On Chess Board
    • 34. Shortest Bridge
    • 35. Pacific Atlantic Water Flow
    • 36. Making A Large Island
    • 37. Path with Maximum Probability
    • Graph Algorithms
  • Disjoint Sets(Union-Find)
  • Heap and Priority Queue
  • Trie
  • Dynamic Programming
  • Greedy Algorithms
  • Backtracking
  • Sub Array and Sliding Window Problems
  • Design
  • Maths
  • Sorting-Algorithms
    • Merge Sort
    • Quick Sort
    • Heap Sort
    • Selection Sort
    • Bubble Sort
    • Insertion Sort
  • Expected Interview MCQ and Questions c++
  • Concepts in C++
  • System Design Questions
  • 💾DBMS
    • Introduction
    • RBMS
    • JOINS
    • SQL
  • 🖥️OS
    • OS and Its Types
    • Process Concept and Threads
    • Process Synchronization
    • Deadlock in Operating System
    • Memory Management
    • Imp Questions of OS for Interviews
  • 🚙OOPS
    • Introduction and Definitions
  • 📨COMPUTER-NETWORKS
    • OSI | TCP IP Model
    • Topology
    • Network Devices
    • IP Address
Powered by GitBook
On this page

Graph

Connected Components / BFS/ DFS

1.Maximum number of edges to be removed to contain exactly K connected components in the Graph2. Social Networking Graph3.The Flight Plan6.Longest path in an undirected tree7.Keys and Rooms9.Number of Islands10. Number of Provinces11.Surrounded Regions12. All Paths From Source to Target13.Word Ladder14.Rotting Oranges19. 01 Matrix22.Word Search23. Minimum Time to Collect All Apples in a Tree24. Time Needed to Inform All Employees25. As Far from Land as Possible26. Clone Graph29. Number of Operations to Make Network Connected30. Open the Lock31. Word Search II33. Knight On Chess Board34. Shortest Bridge35. Pacific Atlantic Water Flow36. Making A Large Island

Cycle Detection

4.Is it a tree?15.Course Schedule

Bipartite Graphs

5.Possible Bipartition8.Is Graph Bipartite?

MST

27. Min Cost to Connect All Points

Directed Graph Indegree

17. Minimum Number of Vertices to Reach All Nodes

Shortest Distances

18.Network Delay Time20. Cheapest Flights Within K Stops28. Find the City With the Smallest Number of Neighbors at a Threshold Distance32. Number of Ways to Arrive at Destination37. Path with Maximum Probability

Strongly Connected Components

21. Critical Connections in a Network

Topological Sort

16.Course Schedule II

Graph Algorithms

Graph Algorithms

Previous6. Complement of Base 10 IntegerNext1.Maximum number of edges to be removed to contain exactly K connected components in the Graph

Last updated 3 years ago

Was this helpful?

  • Connected Components / BFS/ DFS
  • Cycle Detection
  • Bipartite Graphs
  • MST
  • Directed Graph Indegree
  • Shortest Distances
  • Strongly Connected Components
  • Topological Sort
  • Graph Algorithms

Was this helpful?