项目作者: Tooo

项目描述 :
Arrays: Searching and Sorting, Linked Lists: Stacks and Queues
高级语言: C++
项目地址: git://github.com/Tooo/Arrays-Linked-Lists.git
创建时间: 2020-11-23T02:13:25Z
项目社区:https://github.com/Tooo/Arrays-Linked-Lists

开源协议:

下载


Arrays and Linked Lists in C++

Installation

  1. Clone the repository
    1. git clone https://github.com/Toooo123/Arrays-Linked-Lists.git
  2. Make the objects and executable file:
    1. make
  3. Run the executable:
    1. main

    Arrays

  • Create Random Array
  • Print Array
  • Selection Sort
  • Insertion Sort
  • Linear Search
  • Binary Search
  • Merge Sort
  • Quick Sort

Linked Lists

  • Print Linked List
  • Append
  • Preappend
  • Remove Head
  • Remove Tail

Stack

  • Push
  • Pop

Queue

  • Enqueue
  • Dequeue