Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> C#

โปรแกรม C# ตรวจสอบว่ามี K ติดต่อกันเป็นเลขฐานสองหรือไม่


ในการตรวจสอบเลขฐานสองที่ติดกันเป็น 1 คุณต้องตรวจสอบ 0 และ 1

ขั้นแรก ตั้งค่า bool array สำหรับ 0s และ 1s เช่น false และ true -

bool []myArr = {false, true, false, false, false, true, true, true};

สำหรับ 0 ให้นับเป็น 0 -

if (myArr[i] == false)
   count = 0;

สำหรับ 1 ให้เพิ่มจำนวนและตั้งค่าผลลัพธ์ วิธี Max() ส่งกลับค่าที่มากกว่าของสองจำนวน −

count++;
res = Math.Max(res, count);

ตัวอย่าง

ต่อไปนี้คือตัวอย่างเพื่อตรวจสอบว่ามี K ติดต่อกันเป็นเลขฐานสองหรือไม่ -

using System;
class MyApplication {
   static int count(bool []myArr, int num) {
      int myCount = 0, res = 0;
      for (int i = 0; i < num; i++) {
         if (myArr[i] == false)
            myCount = 0;
         else {
            myCount++;
            res = Math.Max(res, myCount);
         }
      }
      return res;
   }
   public static void Main() {
      bool []myArr = {false, true, false, false, false, true, true, true};
      int num = myArr.Length;
      Console.Write("Consecutive 1's = "+count(myArr, num));
   }
}

ผลลัพธ์

Consecutive 1's = 3