이진수에 연속된 1이 있는지 확인하려면 0과 1을 확인해야 합니다.
먼저 0과 1에 대한 bool 배열을 설정합니다. 즉 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개의 연속된 1이 있는지 확인하는 예입니다. -
Live Demonstration
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
위 내용은 이진수에 K개의 연속된 1이 있는지 확인하는 C# 프로그램의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!