PGoCareerGoCareer prep tools
LoginSign up
  • Java
  • Python
  • AI
  • React
  • Angular
  • PHP
  • Node.js
  • SQL
  • DSA
  • HTML
  • CSS
  • JS
  • Spring
  • ML
  • MongoDB

DSA · Theory

Adjacency List

← All stacks

Theory

800/810

Adjacency List

Adjacency List is a DSA topic. In plain words you use it for a short Adjacency List example in a short dry-run on paper. Don’t start with a slogan — start with that picture.

Smallest example: the smallest Adjacency List example you can type. Type it, run it, and say what you see. If you can do that from memory, you know Adjacency List.

From the example next to this theory: Adjacency List — graphs are often stored as adjacency lists: vertex → list of (neighbor, weight).

Trap — only saying “Adjacency List” with no example. Fix that before you talk about advanced DSA.

Viva — what is Adjacency List? Then show the smallest Adjacency List example you can type. Then name the trap.

Exam tip

What is Adjacency List? Show this: the smallest Adjacency List example you can type. Trap: only saying “Adjacency List” with no example.

Example

# adjacency list
graph = {
    "A": [("B", 2), ("C", 5)],
    "B": [("A", 2), ("C", 1)],
    "C": [("A", 5), ("B", 1)],
}
for u, edges in graph.items():
    print(u, "->", edges)

Adjacency List — graphs are often stored as adjacency lists: vertex → list of (neighbor, weight).

Short notes

  • DefAdjacency List — a short Adjacency List example in a short dry-run on paper.
  • Rulethe smallest Adjacency List example you can type
  • Traponly saying “Adjacency List” with no example
  • Usea short dry-run on paper

Questions

1

What is Adjacency List?

2

Give one small example of Adjacency List.

3

What mistake do beginners make with Adjacency List?

4

Where do you use Adjacency List?

800 / 810

P

GoCareerGo

Utilities · Preparation Hub · Resume · CV · Tools — one workspace.

Workspace

DashboardProfilePreparation HubResume builderCV builderCareer planning

PDF Tools

Merge PDFSplit PDFCompress PDFImage to PDFAll toolsJobs

Image & QR

Compress ImageResize ImageQR ScannerQR GeneratorBlogIT interview prep

Company

FAQFeedbackContactPrivacyTermsSitemap

© 2026 GoCareerGo. Keep moving forward.