
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Sort One-Dimensional Array in Descending Order Using Non-Static Method
Set the unsorted list first.
int[] list = {87, 45, 56, 22, 84, 65};
Now use a nested for loop to sort the list that is passed to a function.
for(int i=0; ilt; arr.Length; i++) { for(int j=i+1; j<arr.Length; j++) { if(arr[i]<=arr[j]) { temp=arr[j]; arr[j]=arr[i]; arr[i]=temp; } } Console.Write(arr[i] + " "); }
The following is the complete code to sort one-dimensional array in descending order.
Example
using System; namespace Demo { public class MyApplication { public static void Main(string[] args) { int[] list = {87, 45, 56, 22, 84, 65}; Console.WriteLine("Original Unsorted List"); foreach (int i in list) { Console.Write(i + " "); } MyApplication m = new MyApplication(); m.sortFunc(list); } public void sortFunc(int[] arr) { int temp = 0; Console.WriteLine("
Sorted List"); for(int i=0; i< arr.Length; i++) { for(int j=i+1; j<arr.Length; j++) { if(arr[i]<=arr[j]) { temp=arr[j]; arr[j]=arr[i]; arr[i]=temp; } } Console.Write(arr[i] + " "); } } } }
Output
Original Unsorted List 87 45 56 22 84 65 Sorted List 87 84 65 56 45 22
Advertisements