翻訳と辞書
Words near each other
・ Tims Ford State Park
・ Timsah Arena
・ Timsales F.C.
・ Timsbury
・ Timsbury, Hampshire
・ Timsbury, Somerset
・ Timsfors
・ Timsgarry
・ Timshel
・ Timsher River
・ Timsky
・ Timsky District
・ Timsley, Kentucky
・ Timson
・ Timsons
Timsort
・ Timtaghène
・ Timu
・ Timuay Lucenio Manda
・ Timucua
・ Timucua (disambiguation)
・ Timucua language
・ Timucuan Preserve
・ Timucuy Municipality
・ Timugon language
・ Timun Mas
・ Timuquana Bridge
・ Timuquana Country Club
・ Timur
・ Timur (name)


Dictionary Lists
翻訳と辞書 辞書検索 [ 開発暫定版 ]
スポンサード リンク

Timsort : ウィキペディア英語版
Timsort

Timsort is a hybrid sorting algorithm, derived from merge sort and insertion sort, designed to perform well on many kinds of real-world data. It was invented by Tim Peters in 2002 for use in the Python programming language. The algorithm finds subsets of the data that are already ordered, and uses that knowledge to sort the remainder more efficiently. This is done by merging an identified subset, called a run, with existing runs until certain criteria are fulfilled.
Timsort has been Python's standard sorting algorithm since version 2.3. It is also used to sort arrays of non-primitive type in Java SE 7,〔(【引用サイトリンク】) (coll) Replace "modified mergesort" in java.util.Arrays.sort with timsort"> url = https://bugs.openjdk.java.net/browse/JDK-6804124 )〕 on the Android platform,〔(【引用サイトリンク】 url = https://android.googlesource.com/platform/libcore/+/gingerbread/luni/src/main/java/java/util/TimSort.java )〕 and in GNU Octave.
== Operation ==
Timsort was designed to take advantage of partial orderings that already exist in most real-world data. Timsort operates by finding ''runs'', subsets of at least two elements that are either non-descending (each element is equal to or greater than its predecessor) or strictly descending (each element is lower than its predecessor). If it is descending, it must be strictly descending, since descending runs are later reversed by a simple swap of elements from both ends converging in the middle. After obtaining such a run in the given array, Timsort processes it, and then searches for the next run.

抄文引用元・出典: フリー百科事典『 ウィキペディア(Wikipedia)
ウィキペディアで「Timsort」の詳細全文を読む



スポンサード リンク
翻訳と辞書 : 翻訳のためのインターネットリソース

Copyright(C) kotoba.ne.jp 1997-2016. All Rights Reserved.