Skip to content

Molly-Rose-Pastel/template_doubly_linked_list

Repository files navigation

template_doubly_linked_list

doubly linked list as template implementation

Qt-style linked list.

  • DNode< T > * begin ()
  • DNode< T > * end ()
  • bool append (const T &value)
  • bool clear ()
  • bool contains (const T &value)
  • bool empty ()
  • T & find (const T &value)
  • T & first ()
  • T & last ()
  • bool prepend (const T &value)
  • bool remove (const T &value)
  • bool removeFirst ()
  • bool removeLast ()
  • unsigned long size ()
  • T takeFirst ()
  • T takeLast ()
  • void print ()

About

doubly linked list as template implementation

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published