我们需要三分球,低位、中位、高位。我们将在开头使用 low 和 mid 指针,而 high 指针将指向给定数组的末尾。
如果 array [mid] =0,则将 array [mid] 与 array [low] 交换] 并将两个指针递增一次。
如果 array [mid] = 1,则不需要交换。将中指针递增一次。
如果数组 [mid] = 2,则将数组 [mid] 与数组 [high] 交换,并将高指针递减一次。
时间复杂度 - O(N)
示例
实时演示
using System;
namespace ConsoleApplication{
public class Arrays{
private void Swap(int[] arr, int pos1, int pos2){
int temp = arr[pos1];
arr[pos1] = arr[pos2];
arr[pos2] = temp;
}
public void DutchNationalFlag(int[] arr){
int low = 0;
int mid = 0;
int high = arr.Length - 1;
while (mid