Difference between revisions of "Talk:LlListSort"
Jump to navigation
Jump to search
m (→Bubble Sort?) |
Void Singer (talk | contribs) m (→Bubble Sort?: maybe?...) |
||
Line 19: | Line 19: | ||
:Good point. -- '''[[User:Strife_Onizuka|Strife]]''' <sup><small>([[User talk:Strife_Onizuka|talk]]|[[Special:Contributions/Strife_Onizuka|contribs]])</small></sup> 21:26, 5 April 2014 (PDT) | :Good point. -- '''[[User:Strife_Onizuka|Strife]]''' <sup><small>([[User talk:Strife_Onizuka|talk]]|[[Special:Contributions/Strife_Onizuka|contribs]])</small></sup> 21:26, 5 April 2014 (PDT) | ||
maybe... needs an extended example to see if LSL backwards ordering isn't the culprit<br/>-- '''[[User:Void_Singer|Void]]''' <sup><small>([[User_talk:Void_Singer|talk]]|[[Special:Contributions/Void_Singer|contribs]])</small></sup> 22:19, 5 April 2014 (PDT) |
Revision as of 21:19, 5 April 2014
Bubble Sort?
This script: <lsl> default {
state_entry() { llOwnerSay(llList2CSV(llListSort([3,2,3,5,3,1,1,4], 2, TRUE))); }
} </lsl>
outputs
1, 4, 3, 5, 3, 1, 3, 2
both in LSO and in Mono. This means that the sort is not stable. Since stability is a characteristic of Bubble Sort, it looks like the claim of using Bubble Sort is not correct. --Pedro Oval 20:01, 5 April 2014 (PDT)
maybe... needs an extended example to see if LSL backwards ordering isn't the culprit
-- Void (talk|contribs) 22:19, 5 April 2014 (PDT)