2004-03-31から1日間の記事一覧

クイックソートって、たしかに ArrayedCollection >> quickSort | x xs | self isEmpty ifTrue: [^ self]. x _ self first. xs _ self allButFirst. ^ (xs select: [: y | y = x]) quickSortとか ArrayedCollection >> quickSort | x xs suchY | self isEmpt…