Skip to content

Latest commit

 

History

History
29 lines (15 loc) · 513 Bytes

README.md

File metadata and controls

29 lines (15 loc) · 513 Bytes

oo-linklist

Object oriented singly link list implementation in c++

linklist is templated class so it can carry any type of objects or primitive data types.

Functionalities provided are

-> append

-> insert

-> remove

-> size

-> first

-> find

-> print

-> sort (using merge sort)

To build the executable, go to "src" folder. Makefile is provided. Commands are "make", "make debug" and "make clean"

File src/uselist.cpp is test module to check functionalities of linklist