What IS Gopher?
Long before the Go programming language adopt the gopher as its logo, and before the "World Wide Web" came to dominate the the internet with HTTP, there was Gopher. Gopher was a menu driven text only protocol for deliveri
Graphs As a Data Structure
Graphs are an Abstract Data Type used to organize information and more importantly, how information is related such as the names of Cities and the roads that connect them, or individual people and their various
Say this one 10 times fast: Bidirectional Iterative Deepening Depth Limited Depth First Search
Bidirectional Iterative Deepening Depth First Search(BDIDDFS), some times also called Bidirectional Iterative Deepening Depth Limited Depth First S
The binary search algorithm allows use to search for an item in a sorted array with much faster results than performing a search linearly.
How to painlessly implement an associative array using a hash table.
Hash Tables
When it comes to the literature Hash Tables are often glossed over. Data Structures and Algorithms(DSA) books tend to focus on more complicated,
-
Building an AST from a Regular Expression
-
The Aho, Sethi, Ullman Direct DFA Construction Part 2: Building the DFA from Followpos
-
The Aho, Sethi, Ullman Direct DFA Construction, Part 1: Constructing the Followpos Table
-
Procedural Map Generation with Binary Space Partitioning
-
Exact Match String Searching: The Knuth-Morris-Pratt Algorithm
-
The visitor pattern: OOP takes on the Expression Problem
-
Improving mgcLisp's define syntax
-
Separating the Men from the Boys, Knuth Style
-
Reducing rotations during deletion from AVL trees
-
Parsing Lisp: From Data To Code