Planar Graph is a graph that can be drawn on a plane without any edges crossing.
Key Characteristics:
| Operation | Time Complexity | Space Complexity |
|---|---|---|
| Add Node | O(1) | O(V+E) |
| Add Edge | O(1) | O(1) |
| Remove Node | O(E) | O(V+E) |
| Remove Edge | O(E) | O(1) |
| Planarity Check | O(V+E) | O(V+E) |
Strengths:
Limitations: