Skip to content

Latest commit

 

History

History
58 lines (46 loc) · 1.35 KB

File metadata and controls

58 lines (46 loc) · 1.35 KB
tags date
data-structure
binary-tree
trees
graphs
directed-graph
undirected-graph
weighted-graph
unweighted-graph
adjacency-list
2025-09-26

Non-Linear-Structures

Content

Types of structures

👉 Key difference from linear structures

  • Linear → one-to-one relation (next element only).
  • Non-linear → one-to-many relation (branching, multiple paths).

Trees 🌳

Graphs 🔗

  • Directed Graph (Digraph)
  • Undirected Graph
  • Weighted Graph
  • Unweighted Graph
  • Cyclic / Acyclic Graph
  • Directed Acyclic Graph (DAG)
  • Adjacency Matrix / Adjacency List (common representations)

Related