Giter VIP home page Giter VIP logo

list's Introduction

List in C++

This is a rather simple implementation of a generic linked list in C++. The primary motivations for developing this are to:

  • Become familiar with C++ concepts such as templates and classes
  • Become fluent in C++
  • Highlight what kind of linked list implementation I like
  • Share my implementation with others for critique

Implementation

The List class is generic, and works with any primitive or non-primitive types. At the moment, it only has basic functionality and allows:

  • Appending elements to the end of a List
  • Appending elements to a given index in a list
  • Removing elements from the List
  • Removing elements from a given index in a list
  • Merging lists
  • Converting to an array
  • Printing list to standard output
// Append value to the end of the list
// Usage: list.append(5)
void List<T>::append(T value)

// Append value at position index of the list
// Usage: list.appendAt(6, 25)
void List<T>::appendAt(int index, T value)

// Remove first occurrence of value from the list
// Returns true if removal successful else false
// Usage: list.remove(5)
bool List<T>::remove(T value)

// Remove value at position index from the list
// Returns true if removal successful else false
// Usage: list.removeAt(4)
bool List<T>::removeAt(int index)

// Check the size of the list
// Returns the size of the list
// Usage: list.size()
long List<T>::size()

// Print the list
// Usage: list.print()
void List<T>::print()

// Fills array with elements in the list
// Usage: list.toArray(newArray)
void List<T>::toArray(T* array)

// Merge lists
// Usage: mergedList = list1 + list2
List<T> List<T>::operator +(List<T> otherList)

License

This project is licensed under the MIT license. See the license file for more information.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.