- Sponsor
-
Notifications
You must be signed in to change notification settings - Fork 28
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
Changed the original QuickSort to QuickSelect #8
base: master
Are you sure you want to change the base?
Conversation
Changed the original QuickSort to QuickSelect
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you for creating a pull request :)
It seems a good addition to this plugin.
BTW, is there any evidence that this new algorithm is faster?
Please show me the performance comparison result when you run this plugin on Unreal Engine.
@nutti |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sorry for the late response.
I confirmed this implementation is much faster than the current one.
Please check the comments before merging this PR.
} | ||
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please delete this line.
while (true) | ||
{ | ||
while (Left <= Last && Comparator(*Left, Pivot) == 1) | ||
T* Pivot = First; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think that using median is better choice instead of first element.
How do you think?
Changed the original QuickSort to QuickSelect