Skip to content

Akash1269/HighCode

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

36 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

HighCode

Data structures & algorithms interview prep — self-contained C# scripts runnable via dotnet script.

Quick Start

# Run any problem file
dotnet script DataStructures/Arrays/ContainerWithMostWater.csx

Repository Structure

DataStructures/          — Core DS implementations & problems
├── Arrays/              — Array manipulation, sliding window, two pointers
├── Strings/             — String processing, compression, GCD
├── LinkedList/          — Singly, doubly, circular + problems
├── Stack/               — Stack-based problems (collisions, decoding)
├── Queue/               — Queue-based problems (simulation, BFS)
├── Tree/                — BST, DFS, BFS, level-order problems
├── Graph/               — Graph traversal, connected components
├── PriorityQueue/       — Heap concepts & priority queue theory
└── README.md            — Full file index with tags

Algorithms/              — Algorithm implementations
├── Princeton/           — Princeton Algorithms I: Union-Find, Sorting, Heaps
│   └── Documents/       — Course PDF slides
Documents/               — Tag reference
Legacy/                  — Older C implementations (linked list, stack, queue, BST)
Misc/                    — Notes, books, miscellaneous scripts

Conventions

  • Every problem file starts with // Question - describing the problem
  • Tags appear as comments: // #tree #dfs #backtracking
  • PascalCase file names matching the problem (e.g., MaxDepthToLeaf.csx)
  • Multiple approaches per file ordered from intuitive to optimal
  • Each data structure folder has a learning doc (FolderName.md) summarizing patterns

Topics Covered

Data Structure Problems Implementations
Arrays 16 1
Strings 5
LinkedList 4 4 (singly, doubly, circular, operations)
Stack 3 2 (array, linked list)
Queue 2 2 (array, linked list)
Tree 20 1 (BST)
Graph 3 2 (adjacency list, matrix)
PriorityQueue — (theory docs)

Learning Docs

Each folder contains a pattern-focused learning document:

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors