Linear Search
Posted by Dustin Boston in Algorithm.
Linear Search is a straightforward algorithm for finding a specific element in a list. It sequentially checks each element until the target is found or the list ends, making it simple and effective for unsorted data but inefficient for large datasets.
Merge Sort
Posted by Dustin Boston in Algorithm.
A divide-and-conquer sorting technique that splits the array into halves, recursively sorts each half, and then merges the sorted halves.
Myers Diff
Posted by Dustin Boston in Algorithm.
Computes the differences between two sequences efficiently, commonly used in version control systems to show changes between file revisions.
Negative Array
Posted by Dustin Boston in Algorithm.
Quicksort
Posted by Dustin Boston in Algorithm.
Quick sort is a divide-and-conquer sorting algorithm that selects a “pivot” element from an array, partitions the remaining elements into two sub-arrays (elements less than the pivot and elements greater than the pivot), and then recursively sorts the sub-arrays.
Reverse
Posted by Dustin Boston in Algorithm.
The reverse algorithm takes an array of values and returns the values in reverse order. It works by iterating over the array and swapping the first and last values, then the second and second-to-last values, and so on until the middle of the array is reached.
Suffix Array
Posted by Dustin Boston in Algorithm and Data Structure.
The suffix array algorithm constructs a sorted array of all suffixes of a given string, enabling efficient substring searches, pattern matching, and text analysis. It uses sorting and optional auxiliary structures like the LCP array for additional optimizations.
TF-IDF
Posted by Dustin Boston in Algorithm.