Skip to content

Instantly share code, notes, and snippets.

@twofingerrightclick
Created September 8, 2021 23:14
Show Gist options
  • Save twofingerrightclick/e2b6c570d0d66e3c550a3d3dc8c3f077 to your computer and use it in GitHub Desktop.
Save twofingerrightclick/e2b6c570d0d66e3c550a3d3dc8c3f077 to your computer and use it in GitHub Desktop.
Listing 12.3: Defining a Specialized Stack Class
public class CellStack
{
public virtual Cell Pop();
public virtual void Push(Cell cell);
// ...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment