如何使用 C# 在不使用任何额外空间的情况下对数组中的 0,1 进行排序?

拿两分球,低,高。我们将在开始使用低指针,高指针将指向给定数组的末尾。

如果数组 [low] =0,则不需要交换

如果数组 [low] = 1,则需要交换。将高指针递减一次。

时间复杂度 - O(N)

示例

using System;
namespace ConsoleApplication{
   public class Arrays{
      public void SwapZerosOnes(int[] arr){
         int low = 0;
         int high =arr.Length- 1;
         while (low < high){
            if (arr[low] == 1){
               Swap(arr, low, high);
               high--;
            }
            else{
               low++;
            }
         }
      }
      private void Swap(int[] arr, int pos1, int pos2){
         int temp = arr[pos1];
         arr[pos1] = arr[pos2];
         arr[pos2] = temp;
      }
   }
   class Program{
      static void Main(string[] args){
         Arrays a = new Arrays();
         int[] arr1 = { 0, 1, 1, 0, 1, 1 };
         a.SwapZerosOnes(arr1);
         for (int i = 0; i < arr1.Length; i++){
            Console.WriteLine(arr1[i]);
         }
      }
   }
}
输出结果
0 0 1 1 1 1