Merge sort : Sort Search « Collections Data Structure « Java

Java
1. 2D Graphics GUI
2. 3D
3. Advanced Graphics
4. Ant
5. Apache Common
6. Chart
7. Class
8. Collections Data Structure
9. Data Type
10. Database SQL JDBC
11. Design Pattern
12. Development Class
13. Email
14. Event
15. File Input Output
16. Game
17. Generics
18. Hibernate
19. I18N
20. J2EE
21. J2ME
22. JDK 6
23. JSP
24. JSTL
25. Language Basics
26. Network Protocol
27. PDF RTF
28. Reflection
29. Regular Expressions
30. Scripting
31. Security
32. Servlets
33. Spring
34. Swing Components
35. Swing JFC
36. SWT JFace Eclipse
37. Threads
38. Tiny Application
39. Velocity
40. Web Services SOA
41. XML
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
C# / C Sharp
C# / CSharp Tutorial
ASP.Net
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java » Collections Data Structure » Sort SearchScreenshots 
Merge sort
Merge sort

public class MergeSortArray {
  private long[] theArray; 

  private int nElems; 

  public MergeSortArray(int max) {
    theArray = new long[max];
    nElems = 0;
  }

  public void insert(long value) {
    theArray[nElems= value; // insert it
    nElems++; // increment size
  }

  public void display() {
    for (int j = 0; j < nElems; j++)
      System.out.print(theArray[j" ");
    System.out.println("");
  }

  public void mergeSort() {
    long[] workSpace = new long[nElems];
    recMergeSort(workSpace, 0, nElems - 1);
  }

  private void recMergeSort(long[] workSpace, int lowerBound, int upperBound) {
    if (lowerBound == upperBound// if range is 1,
      return// no use sorting
    else // find midpoint
      int mid = (lowerBound + upperBound2;
      // sort low half
      recMergeSort(workSpace, lowerBound, mid);
      // sort high half
      recMergeSort(workSpace, mid + 1, upperBound);
      // merge them
      merge(workSpace, lowerBound, mid + 1, upperBound);
    }
  }

  private void merge(long[] workSpace, int lowPtr, int highPtr, int upperBound) {
    int j = 0// workspace index
    int lowerBound = lowPtr;
    int mid = highPtr - 1;
    int n = upperBound - lowerBound + 1// # of items

    while (lowPtr <= mid && highPtr <= upperBound)
      if (theArray[lowPtr< theArray[highPtr])
        workSpace[j++= theArray[lowPtr++];
      else
        workSpace[j++= theArray[highPtr++];

    while (lowPtr <= mid)
      workSpace[j++= theArray[lowPtr++];

    while (highPtr <= upperBound)
      workSpace[j++= theArray[highPtr++];

    for (j = 0; j < n; j++)
      theArray[lowerBound + j= workSpace[j];
  }

  public static void main(String[] args) {
    int maxSize = 100// array size
    MergeSortArray arr = new MergeSortArray(maxSize)// create the array

    arr.insert(14)
    arr.insert(21);
    arr.insert(43);
    arr.insert(50);
    arr.insert(62);
    arr.insert(75);
    arr.insert(14);
    arr.insert(2);
    arr.insert(39);
    arr.insert(5);
    arr.insert(608);
    arr.insert(36);

    arr.display()

    arr.mergeSort();

    arr.display();
  
}



           
       
Related examples in the same category
1. Simple Sort DemoSimple Sort Demo
2. A simple applet class to demonstrate a sort algorithm
3. Sorting an array of StringsSorting an array of Strings
4. Simple version of quick sortSimple version of quick sort
5. Combine Quick Sort Insertion SortCombine Quick Sort Insertion Sort
6. Quick sort with median-of-three partitioningQuick sort with median-of-three partitioning
7. Selection sortSelection sort
8. Insert Sort for objectsInsert Sort for objects
9. Insert sortInsert sort
10. Bubble sortBubble sort
11. Binary SearchBinary Search
12. Shell sortShell sort
13. Topological sortingTopological sorting
14. Heap sortHeap sort
15. Sort NumbersSort Numbers
16. A quick sort demonstration algorithmA quick sort demonstration algorithm
17. Customized Sort Test
ww___w._j_av_a__2_s._co___m | Contact Us
Copyright 2003 - 08 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.