Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Arrays.sort(input) is mentioned as Quick Sort #1

Closed
isarwarfp opened this issue May 3, 2019 · 2 comments
Closed

Arrays.sort(input) is mentioned as Quick Sort #1

isarwarfp opened this issue May 3, 2019 · 2 comments

Comments

@isarwarfp
Copy link

Say on FastInterstectionSol2.java class

   public void mergeSort(int[] input) {
        Arrays.sort(input);
    }

but Arrays.sort(input) is a quicksort
Sorts the specified array into ascending numerical order.
Implementation note: The sorting algorithm is a Dual-Pivot Quicksort by Vladimir Yaroslavskiy, Jon Bentley, and Joshua Bloch
as per the documentation.

@cutajarj
Copy link
Collaborator

cutajarj commented May 3, 2019

Yep, you're right, it is quicksort. In previous versions of java it used to be merge sort, infact you can use the legacy merge sort if you use the java runtime args of -Djava.util.Arrays.useLegacyMergeSort=true.
It doesn't really matter if it's a merge sort or quick sort. Both algorithms are on average O(N log N). It is to demonstrate that there exists a faster way to perform an intersection between two list. Maybe the method should be renamed to "fastSort", in case java changes implementation again.

@isarwarfp
Copy link
Author

isarwarfp commented May 3, 2019

Great !
Thanks for the clarification, "fastSort" is good but simple "sort" to make it simple because fastSort attract developer to dig whats new inside.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants