Computer >> 컴퓨터 >  >> 프로그램 작성 >> C#

전체 목록 또는 C#의 지정된 범위에서 요소의 순서를 반대로 합니다.

<시간/>

전체 목록에서 요소의 순서를 반대로 하려면 코드는 다음과 같습니다. -

using System;
using System.Collections.Generic;
public class Demo {
   public static void Main(String[] args) {
      List<String> list = new List<String>();
      list.Add("One");
      list.Add("Two");
      list.Add("Three");
      list.Add("Four");
      list.Add("Five");
      list.Add("Six");
      list.Add("Seven");
      list.Add("Eight");
      Console.WriteLine("Enumerator iterates through the list elements...");
      List<string>.Enumerator demoEnum = list.GetEnumerator();
      while (demoEnum.MoveNext()) {
         string res = demoEnum.Current;
         Console.WriteLine(res);
      }
      list.Reverse(2, 4);
      Console.WriteLine("Elements in ArrayList2...Reversed 4 elements beginning from index 2");
      foreach (string res in list) {
         Console.WriteLine(res);
      }
   }
}

출력

이것은 다음과 같은 출력을 생성합니다 -

Enumerator iterates through the list elements...
One
Two
Three
Four
Five
Six
Seven
Eight
Elements in ArrayList2...Reversed 4 elements beginning from index 2
One
Two
Six
Five
Four
Three
Seven
Eight

다른 예를 살펴보겠습니다 -

using System;
using System.Collections.Generic;
public class Demo {
   public static void Main(String[] args) {
      List<int> list = new List<int>();
      list.Add(5);
      list.Add(10);
      list.Add(20);
      list.Add(50);
      list.Add(100);
      Console.WriteLine("Enumerator iterates through the list elements...");  
      List<int>.Enumerator demoEnum = list.GetEnumerator();
      while (demoEnum.MoveNext()) {
         int res = demoEnum.Current;
         Console.WriteLine(res);
      }
      list.Reverse();
      Console.WriteLine("Elements in List...Reversed");
      foreach (int i in list) {
         Console.WriteLine(i);
      }
   }
}

출력

이것은 다음과 같은 출력을 생성합니다 -

Enumerator iterates through the list elements...
5
10
20
50
100
Elements in List...Reversed
100
50
20
10
5