Linked List project

C++

This project is a console application, an implementation of linked lists, in C++.

The features are the following:

  1. There is a one-way chained list, the data field of which contains the code, name, quantity, price. This algorithm calculates the total value.
  2. In one direction, linked list copy items from a concatenated list into a two-way concatenated list. The algorithm filters out the elements whose data field it exceeds a certain limit
  3. Program that counts the positive, negative, and zero list items(one - way chained list). The algorithm returns a pointer that points to a three - element vector. The vector stores the three values.
  4. Increasingly sorted two-way linked list. The insertion algorithm finds the position corresponding to the new element by that the list stays sorted

You can try it here: