Computer

Anything relating to computers, including operating systems (i.e. Linux), languages (i.e. C), and hardware

Word counting using a binary tree dictionary

Introduction

In "The C Programming Language", the authors present an example program that counts unique words in a text. Such a program needs to maintain a list of every unique word encountered, and for each word, an associated count of the number of occurrences.

Generating Mazes

Introduction

recursion
noun See recursion

Programming, the old fashioned way

This page will link to programming examples and expositions.

Programs

Computing e

Introduction

One of the things computers are useful for is computing large (and small) numbers. The number called e is the base of natural logarithms, and is one of those "transcendental numbers".