Pradeepsingh61/DSA_Code

[REQUEST] Add Merge Sort in Java

开放

#658 创建于 2025年10月25日

 (2 条评论) (0 个反应) (1 位负责人)C++ (266 个派生)auto 404
algorithmsenhancementhacktoberfestnew-language

仓库指标

星标
 (52 个星标)
PR 合并指标
 (PR 指标待抓取)

描述

Algorithm Name

Merge Sort

Programming Language

Java

Category

Sorting

Difficulty Level

Medium (Intermediate)

Algorithm Description

Merge Sort is a divide-and-conquer algorithm that splits an array into two halves, recursively sorts each half, and then merges the sorted halves to form a fully sorted list. It is highly efficient with a time complexity of O(n log n) in the worst, average, and best cases, making it reliable compared to algorithms like Quick Sort, which may degrade to O(n²). Merge Sort is a stable sorting algorithm, preserving the order of equal elements, and performs well with large datasets. It is also ideal for linked lists and external sorting where data cannot fit into memory, as merging is easily managed on disk.

References (Optional)

No response

Contribution Intent

  • I would like to implement this algorithm myself
  • I'm requesting this for someone else to implement
  • I need help implementing this algorithm

Code of Conduct

  • I agree to follow this project's Code of Conduct

贡献者指南