Selection Sort in C
  • Twitter
  • Facebook
  • Snapchat
  • Instagram

Selection Sort in C: Program to Sort Array Using Selection Sort Algorithm

šŸ“‘ On this page:
  • Introduction
  • C Program for Selection Sort
  • Sample Output
  • Program Explanation
  • Algorithm
  • Complexity Analysis
  • Practice Exercise
  • Frequently Asked Questions
šŸ“š In this tutorial, you will learn:
  • What is selection sort and how it works
  • How to implement selection sort in C
  • How selection sort finds the minimum element in each pass
  • Step-by-step explanation of the program
  • Time and space complexity of selection sort
  • Practice exercises to test your understanding

Introduction

In this tutorial, we will learn how to write a C program to sort an array using the selection sort algorithm.

Selection sort is a simple and intuitive sorting algorithm. It works by dividing the array into two parts: the sorted part at the beginning and the unsorted part at the end. In each pass, the algorithm finds the minimum element from the unsorted part and swaps it with the first element of the unsorted part, gradually building the sorted list.

šŸ’” Key Point: Selection sort is known for its simplicity and is often used when memory is limited. It performs the same number of comparisons regardless of the initial order of the array.

Selection sort is used in various scenarios, such as:

  • Education: Teaching fundamental sorting concepts
  • Small Datasets: Sorting small arrays where simplicity is key
  • Embedded Systems: When memory is constrained and simple logic is preferred
  • Visualizations: Creating sorting algorithm animations

Visual Example

Let's see how selection sort sorts the array [64, 25, 12, 22, 11]:

Pass 1 (i=0): Find minimum in [64, 25, 12, 22, 11] → 11

[64, 25, 12, 22, 11] → Swap 64 and 11 → [11, 25, 12, 22, 64]

Pass 2 (i=1): Find minimum in [25, 12, 22, 64] → 12

[11, 25, 12, 22, 64] → Swap 25 and 12 → [11, 12, 25, 22, 64]

Pass 3 (i=2): Find minimum in [25, 22, 64] → 22

[11, 12, 25, 22, 64] → Swap 25 and 22 → [11, 12, 22, 25, 64]

Pass 4 (i=3): Find minimum in [25, 64] → 25 (no swap needed)

Final Sorted Array: [11, 12, 22, 25, 64]

C Program for Selection Sort

#include <stdio.h>

int main() {
    int n, i, j, min_idx, temp;
    
    // Ask user for number of elements
    printf("Enter the number of elements: ");
    scanf("%d", &n);
    
    // Declare array
    int arr[n];
    
    // Read elements into the array
    printf("Enter %d elements:\n", n);
    for(i = 0; i < n; i++) {
        scanf("%d", &arr[i]);
    }
    
    // Selection Sort Algorithm
    for(i = 0; i < n-1; i++) {
        // Find the minimum element in the unsorted part
        min_idx = i;
        for(j = i+1; j < n; j++) {
            if(arr[j] < arr[min_idx]) {
                min_idx = j;
            }
        }
        // Swap the found minimum with the first element of the unsorted part
        if(min_idx != i) {
            temp = arr[i];
            arr[i] = arr[min_idx];
            arr[min_idx] = temp;
        }
    }
    
    // Display sorted array
    printf("\nSorted array in ascending order: ");
    for(i = 0; i < n; i++) {
        printf("%d ", arr[i]);
    }
    printf("\n");
    
    return 0;
}

Sample Output

Enter the number of elements: 5
Enter 5 elements:
64 25 12 22 11

Sorted array in ascending order: 11 12 22 25 64

Another Example:

Enter the number of elements: 6
Enter 6 elements:
29 10 14 37 13 33

Sorted array in ascending order: 10 13 14 29 33 37

Example with Negative Numbers:

Enter the number of elements: 6
Enter 6 elements:
-5 10 -2 8 0 -10

Sorted array in ascending order: -10 -5 -2 0 8 10

Program Explanation

Let's break down the code step by step:

  1. Include Header File: #include <stdio.h> includes the standard input/output library.
  2. Declare Variables:
    • int n; — number of elements
    • int i, j; — loop counters
    • int min_idx; — index of the minimum element in the unsorted part
    • int temp; — temporary variable for swapping
  3. Get User Input: Reads the array elements from the user.
  4. Selection Sort:
    • Outer Loop: for(i = 0; i < n-1; i++) — runs n-1 times
    • Inner Loop: for(j = i+1; j < n; j++) — finds the minimum element
    • Find Minimum: If arr[j] < arr[min_idx], update min_idx
    • Swap: Swap the minimum element with arr[i]
  5. Display Result: Prints the sorted array.
  6. Return: return 0; indicates successful program execution.

šŸ“ Note: Selection sort has a time complexity of O(n²) in all cases. It is not efficient for large arrays but is great for learning sorting concepts.

Selection Sort Algorithm

Step-by-step algorithm:

  1. Start
  2. Read the array elements
  3. For i = 0 to n-2:
    • Set min_idx = i
    • For j = i+1 to n-1:
      • If arr[j] < arr[min_idx]:
        • Set min_idx = j
    • Swap arr[i] and arr[min_idx]
  4. Print the sorted array
  5. End

Time and Space Complexity

Scenario Time Complexity Space Complexity
Best Case (Already Sorted) O(n²) O(1)
Worst Case (Reverse Sorted) O(n²) O(1)
Average Case O(n²) O(1)

šŸ’” Note: Selection sort performs n(n-1)/2 comparisons regardless of the input, which makes it O(n²) in all cases. However, it performs at most n-1 swaps, which is efficient for memory writes.

šŸ’» Practice Exercise

Challenge 1: Modify the selection sort program to sort the array in descending order.

Challenge 2: Modify the program to find the maximum element in each pass instead of the minimum.

šŸ” Click to Show Solution for Challenge 1
#include <stdio.h>

int main() {
    int n, i, j, max_idx, temp;
    
    printf("Enter the number of elements: ");
    scanf("%d", &n);
    
    int arr[n];
    
    printf("Enter %d elements:\n", n);
    for(i = 0; i < n; i++) {
        scanf("%d", &arr[i]);
    }
    
    // Selection Sort for Descending Order
    for(i = 0; i < n-1; i++) {
        max_idx = i;
        for(j = i+1; j < n; j++) {
            if(arr[j] > arr[max_idx]) {  // Change < to > for descending
                max_idx = j;
            }
        }
        if(max_idx != i) {
            temp = arr[i];
            arr[i] = arr[max_idx];
            arr[max_idx] = temp;
        }
    }
    
    printf("\nSorted array in descending order: ");
    for(i = 0; i < n; i++) {
        printf("%d ", arr[i]);
    }
    printf("\n");
    
    return 0;
}

Frequently Asked Questions

1. What is selection sort in C?

Selection sort is a simple sorting algorithm that repeatedly selects the minimum element from the unsorted part and places it at the beginning. It divides the array into sorted and unsorted parts.

2. What is the time complexity of selection sort?

Selection sort has a time complexity of O(n²) in all cases (best, average, worst). It performs n(n-1)/2 comparisons and at most n-1 swaps.

3. Is selection sort stable?

Selection sort is not stable because it can change the relative order of equal elements when swapping.

4. How many swaps does selection sort perform?

Selection sort performs at most n-1 swaps, which is better than bubble sort in terms of swaps.

5. When should I use selection sort?

Selection sort is useful when memory is limited (in-place sorting) or when you need a simple algorithm for educational purposes. It's not recommended for large datasets.

šŸ’” Tip: Selection sort is a great starting point for learning sorting algorithms. Once you understand it, you can move on to more efficient algorithms like Quick Sort or Merge Sort.

šŸ“– Related Tutorials

  • Bubble Sort in C
  • Insertion Sort in C
  • Sort Array in Ascending Order
  • More Array Assignments

Previous Topic: -->> Bubble Sort in C   ||   Next topic: -->> Insertion Sort in C


šŸ“š Explore More Topics

šŸ—„ļø SQL Interview Questions & Answers

SQL SELECT Statement FAQ SQL Restricting & Sorting Data FAQ SQL Group Functions & Aggregated Data FAQ SQL Multiple Tables (JOINs) FAQ SQL Subqueries FAQ SQL DML Statements (Managing Tables) FAQ SQL Indexes, Synonyms & Sequences FAQ SQL DDL (Tables & Relationships) FAQ SQL Views FAQ SQL Indexing Best Practices FAQ SQL Window & Analytic Functions FAQ

šŸ Python Interview Questions & Answers

Python Interview Questions Python Syntax & Variables FAQ Python Data Types FAQ Python If-Else FAQ Python Loops FAQ Python Functions Interview Q Python String Manipulation FAQ Python Lists & Dictionaries FAQ Python Tuples & Sets FAQ Python Exception Handling FAQ Python OOP Interview Questions

ā˜• Java Interview Questions & Answers

Java Introduction Interview Q Java Development Environment FAQ Java Data Types FAQ Java Control Flow & Operators FAQ Java Basic Input/Output FAQ Java Arrays FAQ Java Strings FAQ Java Methods FAQ Java Basic OOP Concepts FAQ Java Advanced OOP Concepts FAQ Java OOP Best Practices FAQ Java Exception Handling FAQ Java Synchronization FAQ Java Threads & Concurrency FAQ Java Collection Framework FAQ Java File I/O & Serialization FAQ Java Serialization & Deserialization FAQ Java Features FAQ Java Inner & Anonymous Classes FAQ Java Memory Management FAQ Java Packages FAQ Java Wrapper Classes FAQ Java Streams & Lambda FAQ

C Language

  • Home
  • Why C Language
  • History of C Language
  • Applications of C Language
  • Introduction To C
    • What is Program?
    • Structure of C Program
    • Working Of C Program
    • CHARACTER SET
    • VARIABLES AND IDENTIFIERS
    • BUILT-IN DATA TYPES
    • OPERATORS AND EXPRESSIONS
    • CONSTANTS AND LITERALS
    • SIMPLE ASSIGNMENT STATEMENT
    • BASIC INPUT/OUTPUT STATEMENT
    • SIMPLE 'C' PROGRAMS
    • Assignments
  • Operators in C Programming
    • Arithmetic Operators
    • Assignment Operators
    • Increment and Decrement Operators
    • Relational Operators
    • Logical Operators
    • Bitwise Operators
    • Other Operators
    • Assignments
  • Conditional Statements
    • DECISION MAKING WITHIN A PROGRAM
    • CONDITIONS
    • IF STATEMENT
    • IF-ELSE STATEMENT
    • IF-ELSE LADDER
    • NESTED IF-ELSE
    • SWITCH CASE
    • Assignments
  • Loops Statements
    • Introduction to Loops
    • GO TO Statement
    • Do while Loop
    • While Loop
    • Nested While Loop
    • Difference Between While and Do while
    • Difference Between Goto and loop
    • while loop assignments
    • C FOR Loop
    • C For loop examples
    • Nested for loop
    • Nested for loop examples
    • Infinite while Loops
    • Infinite for Loops
    • Continue in Loops
    • break in Loops
    • difference while do..while & for
    • Assignments
  • Arrays
    • One Dimensional Array
    • Declaring 1D Arrays
    • Initilization of 1D arrays
    • Accessing element of one 1D Array
    • Read and Display 1D Arrays
    • Two Dimensional Arrays
    • Declare 2D Arrays
    • Read and Display 2D Arrays
    • Assignments/Examples
  • Functions
    • Introduction
    • Need For User-Defined Function
    • Multiple Function Program
    • Modular Programming
    • Elements Of User Defined Function
    • Function Definition
    • Function Declaration
    • Types of functions
    • Nesting of Function
    • Recursion
    • Passing Array To Functions
    • Scope,Visibility and Lifetime of Variables
    • Assignments
  • Structure
    • Introduction
    • Array vs Structure
    • Defining Structure
    • Declaring Structure Variables
    • Type Defined Structure
    • Accessing Structure Members
    • Structure Initilization
    • Copying & Comparing Structure Variables
    • Array of Structure
    • Arrays Within Structure
    • Structures Within Structures
    • Structures and Functions
    • Structure Examples/Assignments
  • Union
    • Define Union
    • Create and use Union
    • Difference Between Structure and Union
    • Union Examples
    • Union FAQ
  • Pointers
    • What Are Pointers In C?
    • How Do We Use Pointers In C?
    • Declaration Of A Pointer
    • The Initialization Of A Pointer
    • Syntax Of Pointer Initialization
    • Use Of Pointers In C
    • The Pointer To An Array
    • The Pointer To A Function
    • The Pointer To A Structure
    • Types Of Pointers
    • The Null Pointer
    • The Void Pointer
    • The Wild Pointer
    • The Near Pointer
    • The Huge Pointer
    • The far Pointer
    • dangling pointer
    • Accessing Pointers- Indirectly And Directly
    • Pros Of Using Pointers In C
    • Cons Of Pointers In C
    • Applications Of Pointers In C
    • The & Address Of Operator In C
    • How To Read The Complex Pointers In C?
    • Practice Problems On Pointers
  • File Processing
    • File Handling In C
    • Types Of Files In C
    • Operations Done In File Handling
    • File Examples
    • Binary Files
    • count words,lines in a file
    • Copy files
    • Update File
    • count vowels in a file
  • Preprocessor
    • Macro substitution division
    • File Inclusion
    • Conditional Compilation
    • Other directives
    • Examples
  • Dynamic Memory Allocation
    • malloc
    • calloc
    • free
    • realloc
    • Examples
  • Storage Classes
  • Graphics
  • Frequently Asked Interview Questions (FAQ)
    • Introduction To C FAQ
    • Operators FAQ
    • Conditional Statements FAQ
    • Loops FAQ
    • Arrays FAQ
    • Function FAQ
    • Structure FAQ
    • Pointers FAQ
    • Files FAQ
    • Storage classes FAQ
    • Dynamic Memory FAQ
  • Programs/Assignments
    • Introduction To C
    • Operators
    • Conditional Statements
    • Loops
    • Arrays
    • Function
    • Structure
    • Pointers
    • Files
    • Storage classes
    • Dynamic Memory
  • Case Studies
  • Multiple Choice Questions
    • Introduction To C MCQ
    • Operators MCQ
    • Conditional Statements MCQ
    • Loops MCQ
    • Arrays MCQ
    • Function MCQ
    • Structure MCQ
    • Pointers MCQ
    • Files MCQ
    • Storage classes MCQ
    • Dynamic Memory MCQ
    • More MCQ

Get in touch

  • tech2dsm@gmail.com

© Sankalan Data Tech. All rights reserved.