Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Collections.Generic;
- using System.Linq;
- namespace Sortign
- {
- class Program
- {
- static void Main(string[] args)
- {
- int[] numbers = Console.ReadLine().Split(" ").Select(int.Parse).ToArray();
- insertionSort(numbers);
- printArray(numbers);
- }
- static void insertionSort(int[] arr)
- {
- int n = arr.Length;
- for (int i = 1; i < n; ++i)
- {
- int key = arr[i];
- int j = i - 1;
- // Move elements of arr[0..i-1],
- // that are greater than key,
- // to one position ahead of
- // their current position
- while (j >= 0 && arr[j] > key)
- {
- arr[j + 1] = arr[j];
- j = j - 1;
- }
- arr[j + 1] = key;
- }
- }
- static void printArray(int[] arr)
- {
- int n = arr.Length;
- for (int i = 0; i < n; ++i)
- Console.Write(arr[i] + " ");
- Console.WriteLine();
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement