SAFCSP-Team / introduction-to-sorting

0 stars 0 forks source link

Introduction to Sorting Algorithm

Objective

In this project, our main goal will be to understand the fundamentals of the Sorting Algorithm.

Concepts

Use the provided resources for a better understanding.

Concept Resources
What is a Selection sort selection sort algorithm (Tutorial)
What is a Quick sort quick sort algorithm

Problem

Analyze the elements {19, 16, 13, 10, 7, 3, 0} using the Selection Sort and Quick Sort algorithms.

Implementation