bcbcarl / data-structures

Data Structures in C++11

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Data Structures

Stack

  • empty
  • size
  • top
  • push
  • pop

Queue

  • empty
  • size
  • front
  • push
  • pop

Deque

  • empty
  • size
  • front
  • back
  • push_front
  • push_back
  • pop_front
  • pop_back

ForwardList

  • empty
  • front
  • push_front
  • pop_front
  • clear
  • reverse

List

  • empty
  • size
  • front
  • back
  • push_front
  • pop_front
  • push_back
  • pop_back
  • clear
  • reverse

Make Options

  • make
  • make test

About

Data Structures in C++11


Languages

Language:C++ 95.8%Language:Python 3.6%Language:Makefile 0.6%