Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,845 questions

51,766 answers

573 users

How to move element to end of array in C#

1 Answer

0 votes
using System;

public class Program
{
    private static void ShiftArrayToLeft(int[] arr, int start) {
        for (int i = start; i < arr.Length - 1; i++) {
            arr[i] = arr[i + 1];
        }
    }

    private static void MoveElementToEndOfArray(int[] arr, int index) {
        int n = arr[index];
        
        ShiftArrayToLeft(arr, index);
        arr[arr.Length - 1] = n;
    }

    private static void PrintArray(int[] arr) {
        for (int i = 0; i < arr.Length; i++) {
            Console.Write(arr[i] + " ");
        }
    }
    
    public static void Main(string[] args)
    {
        int[] arr = new int[] {4, 9, 12, 90, 13, 0, 3, 97};

        PrintArray(arr);

        int index = 4;
            
        Console.WriteLine("\nelement value: " + arr[index]);
            
        MoveElementToEndOfArray(arr, index);
        
        PrintArray(arr);
    }
}




/*
run:
  
4 9 12 90 13 0 3 97 
element value: 13
4 9 12 90 0 3 97 13 
  
*/

 



answered Nov 23, 2022 by avibootz
...