X Tutup
Skip to content

Update 6.quickSort.md#6

Merged
hustcc merged 4 commits intohustcc:masterfrom
wagnlinzh:patch-1
Feb 8, 2017
Merged

Update 6.quickSort.md#6
hustcc merged 4 commits intohustcc:masterfrom
wagnlinzh:patch-1

Conversation

@wagnlinzh
Copy link
Copy Markdown
Contributor

update 基于严蔚敏版的js快排, C++版.优化掉swap的操作

update 基于严蔚敏版的js快排, C++版.优化掉swap的操作
@hustcc
Copy link
Copy Markdown
Owner

hustcc commented Feb 8, 2017

C++ 的实现就不需要了吧。

另外 javascript 的代码需要能够格式化一下,比如 var a = '1'; 变量和操作符之前能够有空格。

唔,其实我想表达的重点是优化掉swap这个交换,这里(swap)会增加同排序数量级(O(nlgn))的比较次数和交换次数操作,有点浪费:)
@wagnlinzh
Copy link
Copy Markdown
Contributor Author

@hustcc

唔,其实我想表达的重点是优化掉swap这个交换,这里(swap)会增加同排序数量级(O(nlgn))的比较次数和交换次数操作,有点浪费:)

@hustcc hustcc merged commit 2939241 into hustcc:master Feb 8, 2017
yololippy pushed a commit to yololippy/JS-Sorting-Algorithm that referenced this pull request May 11, 2018
* Update 6.quickSort.md

update 基于严蔚敏版的js快排, C++版.优化掉swap的操作

* Update 6.quickSort.md

* update lagyout

唔,其实我想表达的重点是优化掉swap这个交换,这里(swap)会增加同排序数量级(O(nlgn))的比较次数和交换次数操作,有点浪费:)

* Update 6.quickSort.md
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

Successfully merging this pull request may close these issues.

2 participants

X Tutup