#Cpp-Programming

5 articles

How to Create a Stack Using the Standard Template Library

How to Create a Stack Using the Standard Template Library

Stack is a data structure that provides data like a stack in a glass, so if data is put into a glass the first one will be the last to be taken, then this data structure adheres to the LIFO (Last In First Out) rule.

How to Create a Stack using Double Linked List

How to Create a Stack using Double Linked List

Stack is a data structure that provides data like a stack in a glass, so if data is put into a glass the first one will be the last to be taken, then this data structure adheres to the LIFO (Last In First Out) rule.

How to Create a Stack using C++ Arrays

How to Create a Stack using C++ Arrays

Stack is a data structure that provides data like a stack in a glass, so if data is put into a glass the first one will be the last to be taken, then this data structure adheres to the LIFO (Last In First Out) rule.

How to Create a Double Linked List using C++

How to Create a Double Linked List using C++

Double Linked List is a linked list that uses just a pointer variable to store a lot of data using the linked list method, a list of contents that are interconnected.

How to Use a Single Linked List Using C++

How to Use a Single Linked List Using C++

Linked List is a form of data structure, containing a collection of data (nodes) that are arranged sequentially, interconnected, dynamic and limited.