Tag: algorithm
All the articles with the tag "algorithm".
-
Elementary Sorting Methods
·· 3 min readSelection sort is a simple and efficient sorting algorithm that works by repeatedly selecting the smallest (or largest) element from the unsorted portion of ...
-
Application and uses of Merge Sort
·· 1 min readToday is Jan 21, 2023.
-
Application and uses of Quick Sort
·· 2 min readQuick Sort
-
Arbitrary Precision Arithmetic
·· 3 min readIn computer science, arbitrary-precision arithmetic, also called bignum arithmetic, multiple-precision arithmetic, or sometimes infinite-precision arithmetic...
-
Binary Search
·· 1 min readBinary Search is a searching algorithm used in a sorted array by repeatedly dividing the search interval in half. The idea of binary search is to use the inf...
-
Merge Sort
·· 2 min readSame with the preparation of quick sort.
-
LeetCode 47. Permutations II
·· 1 min readLeetCode 47. Permutations II (全排列 II)
-
Quick Sort
·· 2 min readQuicksort is an efficient, general-purpose sorting algorithm. Of course, we could sort arrays with Standard Library or STL simply and quickly. However, sorti...
-
LeetCode Biweekly Contest 90
·· 4 min readYou are given an array of equal-length strings words. Assume that the length of each string is n.