Tech Point Fundamentals

Saturday, January 8, 2022

C# Program to Sort Array in Descending Order

C# Program to Sort Array in Descending Order

coding-interview-question-csharp

Most of the IT companies check the coding skills and problem-solving skills as well along with the theoretical interview questions. Sometimes you are free to write the pseudo code and sometimes you are asked to write the complete program either on any paper or any editor. 


This question is asked in the coding interview to write the program. Here you can find the program as well as a live running program so that you can test the program immediately.


Watch our videos here





Question: 


How can you sort an array in descending order? Write a program to sort an array in descending.








C# Program To Sort an Array in Descending Order


       
 

// Author 	: Tech Point Fundamentals
// Website 	: www.techpointfunda.com
// Channel	: https://www.youtube.com/c/TechPointFundamentals
// Demo		: Sorting Array Elements Descending

using System;

public class Program
{
 public static void Main()
 {
	int[] unsortedArray = new int[8] {5, 1, 6, 2, 7, 3, 8, 4};			
	
	Console.WriteLine("UnSorted Array: ");	
	Console.WriteLine("----------------------------------------------------- ");	
	for( int i = 0; i < unsortedArray.Length; i++)
	{
		Console.WriteLine(unsortedArray[i]);
	}
	
	// Sorting using User Defined Function
	var sortedArray = SortArray(unsortedArray);
	
	Console.WriteLine("\nDescending Sorted Array Without Any Library Function: ");	
	Console.WriteLine("----------------------------------------------------- ");	
	for( int i = 0; i <= sortedArray.Length - 1; i++)
	{
		Console.WriteLine(sortedArray[i]);
	}		
	
	// Sorting using Library Function
	 Array.Sort(unsortedArray);
	 Array.Reverse(unsortedArray);
	
	Console.WriteLine("\nDescending Sorted Array With Library Function: ");	
	Console.WriteLine("----------------------------------------------------- ");	
	for( int i = 0; i <= unsortedArray.Length - 1; i++)
	{
		Console.WriteLine(unsortedArray[i]);
	}	
 }	

 public static int[] SortArray(int[] array)
 {		
 int temp = 0;
 for (int i = 0; i <array.Length ; i++)
 {
	for (int j = i+1; j < array.Length ; j++)
	{
		 if (array[i] < array[j]) {

			temp = array[i];
			array[i] = array[j];
			array[j] = temp;
		}
	} 
 }
 return array;
 }
}





Output: 



                UnSorted Array: ----------------------------------------------------- 5 1 6 2 7 3 8 4 Descending Sorted Array Without Any Library Function: ----------------------------------------------------- 8 7 6 5 4 3 2 1 Descending Sorted Array With Library Function: ----------------------------------------------------- 8 7 6 5 4 3 2 1


Live Demo






No comments:

Post a Comment

Please do not enter any HTML. JavaScript or spam link in the comment box.