Computer >> Máy Tính >  >> Lập trình >> C#

Kiểm tra xem cả hai nửa của chuỗi có cùng bộ ký tự trong C # hay không

Đầu tiên, đặt chuỗi được kiểm tra.

string s = "timetime";

Bây giờ đặt hai bộ đếm cho hai nửa của chuỗi.

int []one = new int[MAX_CHAR];
int []two = new int[MAX_CHAR];

Kiểm tra cả hai nửa của chuỗi.

for (int i = 0, j = l - 1; i < j; i++, j--) {
   one[str[i] - 'a']++;
   two[str[j] - 'a']++;
}

Sau đây là mã hoàn chỉnh để kiểm tra xem cả hai nửa của chuỗi có cùng một bộ ký tự hay không trong C #.

Ví dụ

using System;
class Demo {
   static int MAX_CHAR = 26;
   static bool findSameCharacters(string str) {
      int []one = new int[MAX_CHAR];
      int []two = new int[MAX_CHAR];
      int l = str.Length;
      if (l == 1)
      return true;
      for (int i = 0, j = l - 1; i < j; i++, j--) {
         one[str[i] - 'a']++;
         two[str[j] - 'a']++;
      }
      for (int i = 0; i < MAX_CHAR; i++)
      if (one[i] != two[i])
      return false;
      return true;
   }
   public static void Main() {
      string str = "timetime";
      if (findSameCharacters(str))
      Console.Write("Yes: Two halves are same!");
      else
      Console.Write("No! Two halves are not same!");
   }
}

Đầu ra

Yes: Two halves are same!