Skip to content
This repository was archived by the owner on Oct 4, 2023. It is now read-only.

Create Merge Sort Technique#79

Open
aniketakumari wants to merge 1 commit intoayushi-ras:mainfrom
aniketakumari:patch-2
Open

Create Merge Sort Technique#79
aniketakumari wants to merge 1 commit intoayushi-ras:mainfrom
aniketakumari:patch-2

Conversation

@aniketakumari
Copy link
Copy Markdown

Pull Request: Merge Sort Implementation

Description:
This PR presents a Python implementation of the Merge Sort algorithm, a highly efficient divide-and-conquer sorting technique. Merge Sort divides the unsorted list into n sublists, each containing one element, and then repeatedly merges sublists to produce new sorted sublists until only one sublist remains.

Changes Made:
I added a Python function, merge_sort(arr), which sorts a given list in ascending order using the Merge Sort algorithm. We have implemented user input for an unsorted list of integers. Displayed the sorted array as output.

Purpose:
This PR aims to provide a robust and efficient implementation of Merge Sort in Python. Merge Sort is suitable for sorting large datasets and offers consistent performance.

Testing:
The code has been rigorously tested with various input lists, including lists of different sizes and configurations, to ensure accurate and efficient sorting.

Please review and merge this PR.

Pull Request: Merge Sort Implementation

Description:
This PR presents a Python implementation of the Merge Sort algorithm, a highly efficient divide-and-conquer sorting technique. Merge Sort divides the unsorted list into n sublists, each containing one element, and then repeatedly merges sublists to produce new sorted sublists until only one sublist remains.

Changes Made:
I added a Python function, merge_sort(arr), which sorts a given list in ascending order using the Merge Sort algorithm.
We have implemented user input for an unsorted list of integers.
Displayed the sorted array as output.

Purpose:
This PR aims to provide a robust and efficient implementation of Merge Sort in Python. Merge Sort is suitable for sorting large datasets and offers consistent performance.

Testing:
The code has been rigorously tested with various input lists, including lists of different sizes and configurations, to ensure accurate and efficient sorting.

Please review and merge this PR.
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant