introspective$40483$ - определение. Что такое introspective$40483$
Diclib.com
Словарь ChatGPT
Введите слово или словосочетание на любом языке 👆
Язык:

Перевод и анализ слов искусственным интеллектом ChatGPT

На этой странице Вы можете получить подробный анализ слова или словосочетания, произведенный с помощью лучшей на сегодняшний день технологии искусственного интеллекта:

  • как употребляется слово
  • частота употребления
  • используется оно чаще в устной или письменной речи
  • варианты перевода слова
  • примеры употребления (несколько фраз с переводом)
  • этимология

Что (кто) такое introspective$40483$ - определение

SORTING ALGORITHM
Introspective sort; Intro sort; Introspection sort

Introsort         
Introsort or introspective sort is a hybrid sorting algorithm that provides both fast average performance and (asymptotically) optimal worst-case performance. It begins with quicksort, it switches to heapsort when the recursion depth exceeds a level based on (the logarithm of) the number of elements being sorted and it switches to insertion sort when the number of elements is below some threshold.
introspective         
1988 STUDIO ALBUM BY PET SHOP BOYS
Introspective (album); I Want a Dog (song); In My House (Pet Shop Boys song)
Introspective people spend a lot of time examining their own thoughts, ideas, and feelings.
ADJ
Introspective         
1988 STUDIO ALBUM BY PET SHOP BOYS
Introspective (album); I Want a Dog (song); In My House (Pet Shop Boys song)
·adj Inspecting within; seeing inwardly; capable of, or exercising, inspection; self-conscious.
II. Introspective ·adj Involving the act or results of conscious knowledge of physical phenomena;
- contrasted with associational.

Википедия

Introsort

Introsort or introspective sort is a hybrid sorting algorithm that provides both fast average performance and (asymptotically) optimal worst-case performance. It begins with quicksort, it switches to heapsort when the recursion depth exceeds a level based on (the logarithm of) the number of elements being sorted and it switches to insertion sort when the number of elements is below some threshold. This combines the good parts of the three algorithms, with practical performance comparable to quicksort on typical data sets and worst-case O(n log n) runtime due to the heap sort. Since the three algorithms it uses are comparison sorts, it is also a comparison sort.

Introsort was invented by David Musser in Musser (1997), in which he also introduced introselect, a hybrid selection algorithm based on quickselect (a variant of quicksort), which falls back to median of medians and thus provides worst-case linear complexity, which is optimal. Both algorithms were introduced with the purpose of providing generic algorithms for the C++ Standard Library which had both fast average performance and optimal worst-case performance, thus allowing the performance requirements to be tightened. Introsort is in place and not stable.