Skip to content

UMK-Data-Science/advanced-sorting

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 

Repository files navigation

Tutorial Week 7 & 8 - Advanced Sorting Technique

Please anwer all questions and read carefully :octocat:

Instructions

This tutorial consist with 2 questions. Try to complete this tutorial by commit your changes and read the questions carefully 😄

Exercise 1

Given unsorted array UA[]={5,1,4,2,8}, write a C program to sort a list of elements using Merge Sort Algorithm

Input
UA[]={5,1,4,2,8}
Expected Output
Sorted Element using Merge Sort Algorithm is 1,2,4,5,8

Exercise 2

Given unsorted array UA[]={5,1,4,2,8}, write a C program to sort a list of elements using Quick Sort Algorithm

Input
UA[]={5,1,4,2,8}
Expected Output
Sorted Element using Quick Sort Algorithm is 1,2,4,5,8

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages