Skip to content

Own implementation of the linked list class using the C++ STL

Notifications You must be signed in to change notification settings

Funcke/TemplateList

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

36 Commits
 
 
 
 
 
 

Repository files navigation

TList Supported by bytes

TList is a small library for a linked list using the C++ STL.

Requirements:

For using this library you only need a C++11 compatible C++ compiler;

Developed and tested on x64 platform.

Usage:

clone the repository and copy the header- and the source-file in your project folder.

Include the header with:

#include "list.h"

the class itself is a member of the List namespace.

API

TList provides the following functionalities:

  • void Add(T);
  • void Add(Node<T>*);
  • T Remove();
  • T Remove(int);
  • void Insert(int, T);
  • void Insert(T);
  • void Insert(Node<T>*);
  • T Show();
  • T Show(int);

About

Own implementation of the linked list class using the C++ STL

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages