여기서 문제가 발생합니다. 이진 배열이 있습니다. n개의 요소가 있습니다. 각 요소는 0 또는 1입니다. 처음에는 모든 요소가 0입니다. 이제 M 명령을 제공하겠습니다. 각 명령에는 시작 및 끝 인덱스가 포함됩니다. 따라서 command(a, b)는 명령이 위치 a의 요소에서 위치 b의 요소로 적용된다는 의미입니다. 이 명령은 값을 전환합니다. 따라서 ath 인덱스에서 b번째 인덱스로 전환됩니다. 질문은 간단합니다. 아이디어를 얻으려면 알고리즘을 검토하세요.
Begin for each element e from index a to b, do toggle the e and place into arr at its position. done End
#include <iostream> using namespace std; void toggleCommand(int arr[], int a, int b){ for(int i = a; i <= b; i++){ arr[i] ^= 1; //toggle each bit in range a to b } } void display(int arr[], int n){ for(int i = 0; i<n; i++){ cout << arr[i] << " "; } cout << endl; } int main() { int arr[] = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}; int n = sizeof(arr)/sizeof(arr[0]); display(arr, n); toggleCommand(arr, 3, 6); toggleCommand(arr, 8, 10); toggleCommand(arr, 2, 7); display(arr, n); }
0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 1 1 0
위 내용은 M 범위 전환 작업 후 이진 배열은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!