What is the translation of " QUICKSORT " in English?

Noun

Examples of using Quicksort in Indonesian and their translations into English

{-}
  • Colloquial category close
  • Ecclesiastic category close
  • Computer category close
  • Ecclesiastic category close
Contoh keseluruhan dari quicksort pada kumpulan acak dari angka.
Full example of quicksort on a random set of numbers.
Bucket Sort dengan dua keranjang atau bucket hampir sama dengan quicksort;
Bucket sort with two buckets is very similar to quicksort;
Ruang yang digunakan oleh quicksort tergantung dari versi yang digunakan.
The space used by quicksort depends on the version used.
Quicksort adalah algoritma penyortiran yang efisien, berfungsi sebagai metode sistematis untuk menempatkan elemen-elemen array secara berurutan.
Quicksort is an efficient sorting algorithm, serving as a systematic method for placing the elements of an array in order.
Perhitungan waktu yang cepat ini menjadi alasan mengapa secara praktiknya quicksort lebih dominan dibandingkan algortima sorting yang lainnya.
This fast average runtime is another reason for quicksort's practical dominance over other sorting algorithms.
Pada setiap versi awal quicksort, elemen yang paling kiri dari partisi akan sering menjadi pilihan sebagai elemen pivot.
In the very early versions of quicksort, the leftmost element of the partition would often be chosen as the pivot element.
Struktur data sepertitabel hash, array, dan pohon biner, dan algoritma seperti quicksort, dapat berguna untuk membuat perangkat lunak.
Datastructures like ishtables,array and binaries as well as algorithm like quick-sort can be useful for the creation of software.
Beberapa algoritma( penyisipan, quicksort, penghitungan, radix) menempatkan item ke posisi sementara, dekat( r) ke posisi akhir mereka.
Some algorithms(insertion, quicksort, counting, radix) put items into a temporary position, close(r) to their final position.
Struktur data seperti tabel hash,array, dan pohon biner, dan algoritma seperti quicksort, dapat berguna untuk membuat perangkat lunak.
Data structures such as hash tables,arrays and binary trees and algorithms such as kuicksort can be useful for creating soft ware.
Quicksort juga bersaing dengan Mergesort, algoritme sorting rekursif yang lainnya tetapi dengan keuntungan waktu kalkulasi worst casenya O( n log n).
Quicksort also competes with mergesort, another recursive sort algorithm but with the benefit of worst-case O(n log n) running time.
Struktur data seperti tabel hash, array, dan pohon biner,dan algoritma seperti quicksort, dapat berguna untuk membuat perangkat lunak.
Data structures such as hash tables, arrays, and binary trees,and algorithms such as quicksort, can be useful for creating software.
QuickSort dapat diimplementasikan dengan cara yang berbeda dengan mengubah pilihan pivot, sehingga kasus terburuk jarang terjadi pada tipe data tertentu.
QuickSort can be implemented in different ways by changing the choice of pivot, so that the worst case rarely occurs for a given type of data.
Struktur data seperti tabel hash, array, dan pohon biner,dan algoritma seperti quicksort, dapat berguna untuk membuat perangkat lunak.
Data structures such as hash tables, arrays, and binary trees,and algorithms such as quicksort, could be helpful for producing software.
Quicksort adalah algoritma sorting yang dikembangkan oleh CAR Hoare dimana pada rata-rata, membuat O( n log n)( notasi O besar) dibuat perbandingan untuk mengurutkan n item.
Quicksort is a divide-and-conquer sorting algorithm developed by Tony Hoare that, on average, makes O(n log n) comparisons to sort n items.
Alih-alih memasukkan item secara berurutan pada tree yang jelas, quicksort mengatur mereka secara bersamaan pada tree yang tersirat dengan pemanggilan rekursif.
Instead of inserting items sequentially into an explicit tree, quicksort organizes them concurrently into a tree that is implied by the recursive calls.
Apa itu QuickSort 3- Way Dalam algoritma QuickSort sederhana, kita memilih elemen sebagai pivot, bagikan array di sekitar poros dan rekur untuk subarray di kiri dan kanan poros.
In simple QuickSort algorithm, we select an element as pivot, partition the array around pivot and recur for subarrays on left and right of pivot.
Bersama dengan sederhana O( log n) penggunaan ruang, ini membuat salah satu quickSort dari algoritma pengurutan yang paling populer, tersedia di perpustakaan banyak standar.
Together with its modest O(nlogn) space usage, this makes quicksort one of the most sorting algorithms, available in many standard libraries.
Versi In-Place dari Quicksort menggunakan kerumitan ruang dari O( long n), bahkan pada worst case, ketika diimplementasikan menggunakan beberapa strategi berikut.
The in-place version of quicksort has a space complexity of O(log n), even in the worst case, when it is carefully implemented using the following strategies.
Bersama dengan sederhana O( log n) penggunaan ruang, ini membuat salah satu quickSort dari algoritma pengurutan yang paling populer, tersedia di perpustakaan banyak standar.
Together with its modest O(log n) space usage, quicksort is one of the most popular sorting algorithms and is available in many standard programming libraries.
Google ingin Anda untuk belajar tentang tipe data dasar seperti stacks, queues, dan bags,serta bisa dan mengerti algoritma pengurutan seperti quicksort, mergesort, dan heapsort.
Google wants you to learn about fundamental data types like stacks, queues, and bags,as well as grasp sorting algorithms like quicksort, mergesort, and heapsort.
Jumlah perbandingan dari eksekusi Quicksort sama dengan perbandingan selama konstruksi BST dengan urutan masukan.
The number of comparisons of the execution of quicksort equals the number of comparisons during the construction of the BST by a sequence of insertions.
Google ingin Anda untuk belajar tentang tipe data dasar seperti stacks, queues, dan bags,serta bisa dan mengerti algoritma pengurutan seperti quicksort, mergesort, dan heapsort.
Google wants engineers to learn about data types like queues, stacks, and bags, aswell as grasp, sorting algorithms like merge sort, quicksort, and heapsort.
Akibatnya, banyak algoritma seperti quicksort dan pencarian biner berubah menjadi algoritma buruk yang bahkan kurang efisien daripada alternatif naif mereka, algoritma ini tidak praktis tanpa akses acak.
As a result, many algorithms such as quicksort and binary search degenerate into bad algorithms that are even less efficient than their naïve alternatives; these algorithms are impractical without random access.
Memahami dasar-dasar jenis data seperti stacks,queues atau bags dan memahami algoritma pengurutan seperti quicksort, merge sort atau heapsort adalah penting menurut google.
Understanding the basics of data types like stacks,queues or bags and understanding sorting algorithms like quicksort, merge sort or heapsort is important according to google.
Algoritma seleksi yangsederhana teatpi efektif bekerja hampir sama seperti quicksort, kecuali yang daripada memanggil rekursif pada kedua sublist, algoritma ini hanya membuat satu pemanggilan rekursif ekor pada sublist yang mengandung elemen yang diinginkan.
A simple selectionalgorithm, which chooses the kth smallest of a list of elements, works nearly the same as quicksort, except instead of recursing on both sublists, it only recurses on the sublist which contains the desired element.
Untuk setiap eksekusi quicksort harus bersesuaian dengan binary search tree( BST): pivot awal berada pada node rootl pivot dari tengah kiri merupakan subtree kiri root, pivot dari tengah kanan merupakan subtree kanan root, dan seterusnya.
To each execution of quicksort corresponds the following binary search tree(BST): the initial pivot is the root node; the pivot of the left half is the root of the left subtree, the pivot of the right half is the root of the right subtree, and so on.
Karena elemen yang sama memotong hingga pada akhir dari prosedur soring pada jumlah yang besar,versi dari algoritme quicksort yang memilih pivot sebagai elemen tengah berjalan lebih cepat daripada algortima yang dijelaskan pada diagram ini pada sejumlah besar angka.
Since sub-arrays of sorted/ identical elements crop up a lot towards the end of a sorting procedure on a large set,versions of the quicksort algorithm that choose the pivot as the middle element run much more quickly than the algorithm described in this diagram on large sets of numbers.
Algoritma seleksi yangsederhana teatpi efektif bekerja hampir sama seperti quicksort, kecuali yang dari pada memanggil rekursif pada kedua sublist, algoritma ini hanya membuat satu pemanggilan rekursif ekor pada sublist yang mengandung elemen yang diinginkan.
One simple buteffective selection algorithm works nearly in the same manner as quicksort, except that instead of making recursive calls on both sublists, it only makes a single tail-recursive call on the sublist which contains the desired element.
Pertimbangkan dengan mengurut menggunakan bytes atau words dari panjang W bit, best casenya ialah O( KN) dan worst casenya ialah O( 2 KN) atau paling tidak O( N2) sebagai quicksort standar, dengan diberikan untuk tanda khusus N< 2 K, dan K adalah konstanta yang tersembunyi pada seluruh algortima sorting pembanding semuanya termasuk quicksort.
Given we sort using bytes or words of length W bits, the best case is O(KN) and the worst case O(2KN) or at least O(N2) as for standard quicksort, given for unique keys N<2K, and K is a hidden constant in all standard comparison sort algorithms including quicksort.
Results: 29, Time: 0.0239

Top dictionary queries

Indonesian - English