Correction Exercice Tri insertion avec string

Run Settings
LanguageC#
Language Version
Run Command
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Exercice_Tri { class MainClass { public static void Main(string[] args) { //liste d'un groupe d'élève string[] students = { "henri", "Alexandre", "Olivier", "Léa", "Morgan", "Mathieu", "Bruno", "Laure", "Alix", "Louis" }; //Tri ce tableau à l'aide AfficherTab(TriParSelection(students)); } static void AfficherTab(string [] tab) { for (int i = 0; i < tab.Length; i++) { Console.WriteLine(tab[i]); } } static bool ComparaisonAscii(string a , string b){ bool res = false; int compt = 0; a = a.ToLower(); b = b.ToLower(); if (a == b) return res; while(a[compt] == b[compt]) { compt++; } if(Convert.ToInt32(a[compt]) < Convert.ToInt32(b[compt])) { res = true; } return res; } static int Pos_min(string[] tab, int ind) { // on considère que le plus élèment est le premier est donc que sa position dans le tableau est 0 for (int i = ind; i < tab.Length; i++) { if (ComparaisonAscii(tab[i], tab[ind])) { ind = i; } } return ind; } static string [] Echanger(string [] tab, int x, int y) { //Pour échanger deux élèments, on doit stocker la valeur du premier dans une variable temporaire string temp = tab[x]; tab[x] = tab[y]; tab[y] = temp; return tab; } static string [] TriParSelection(string[] tab) { //**code ici la solution pour trier en t'aidant des méthodes for (int i = 0; i < tab.Length; i++) { tab = Echanger(tab, i, Pos_min(tab,i)); } return tab; } } }
Editor Settings
Theme
Key bindings
Full width
Lines