formatting source-code for 153fb7b8a5

This commit is contained in:
github-actions
2020-05-30 04:02:09 +00:00
parent 92fe9495ec
commit 8a2de9842b
175 changed files with 1671 additions and 3460 deletions

View File

@@ -6,14 +6,11 @@ const int RUN = 32;
// this function sorts array from left index to to right index which is of size
// atmost RUN
void insertionSort(int arr[], int left, int right)
{
for (int i = left + 1; i <= right; i++)
{
void insertionSort(int arr[], int left, int right) {
for (int i = left + 1; i <= right; i++) {
int temp = arr[i];
int j = i - 1;
while (arr[j] > temp && j >= left)
{
while (arr[j] > temp && j >= left) {
arr[j + 1] = arr[j];
j--;
}
@@ -22,8 +19,7 @@ void insertionSort(int arr[], int left, int right)
}
// merge function merges the sorted runs
void merge(int arr[], int l, int m, int r)
{
void merge(int arr[], int l, int m, int r) {
// original array is broken in two parts, left and right array
int len1 = m - l + 1, len2 = r - m;
int *left = new int[len1], *right = new int[len2];
@@ -35,15 +31,11 @@ void merge(int arr[], int l, int m, int r)
int k = l;
// after comparing, we merge those two array in larger sub array
while (i < len1 && j < len2)
{
if (left[i] <= right[j])
{
while (i < len1 && j < len2) {
if (left[i] <= right[j]) {
arr[k] = left[i];
i++;
}
else
{
} else {
arr[k] = right[j];
j++;
}
@@ -51,16 +43,14 @@ void merge(int arr[], int l, int m, int r)
}
// copy remaining elements of left, if any
while (i < len1)
{
while (i < len1) {
arr[k] = left[i];
k++;
i++;
}
// copy remaining element of right, if any
while (j < len2)
{
while (j < len2) {
arr[k] = right[j];
k++;
j++;
@@ -70,21 +60,18 @@ void merge(int arr[], int l, int m, int r)
}
// iterative Timsort function to sort the array[0...n-1] (similar to merge sort)
void timSort(int arr[], int n)
{
void timSort(int arr[], int n) {
// Sort individual subarrays of size RUN
for (int i = 0; i < n; i += RUN)
insertionSort(arr, i, std::min((i + 31), (n - 1)));
// start merging from size RUN (or 32). It will merge to form size 64, then
// 128, 256 and so on ....
for (int size = RUN; size < n; size = 2 * size)
{
for (int size = RUN; size < n; size = 2 * size) {
// pick starting point of left sub array. We are going to merge
// arr[left..left+size-1] and arr[left+size, left+2*size-1] After every
// merge, we increase left by 2*size
for (int left = 0; left < n; left += 2 * size)
{
for (int left = 0; left < n; left += 2 * size) {
// find ending point of left sub array
// mid+1 is starting point of right sub array
int mid = left + size - 1;
@@ -97,15 +84,13 @@ void timSort(int arr[], int n)
}
// utility function to print the Array
void printArray(int arr[], int n)
{
void printArray(int arr[], int n) {
for (int i = 0; i < n; i++) printf("%d ", arr[i]);
std::cout << std::endl;
}
// Driver program to test above function
int main()
{
int main() {
int arr[] = {5, 21, 7, 23, 19};
int n = sizeof(arr) / sizeof(arr[0]);
printf("Given Array is\n");