在 C++ 中計算給定 XOR 的所有對
在本教程中,我們將討論一個程式,該程式用於查詢具有給定 XOR 的對數。
為此,我們將提供一個數組和一個值。我們的任務是找出其 XOR 等於給定值的對數。
示例
#include<bits/stdc++.h> using namespace std; //returning the number of pairs //having XOR equal to given value int count_pair(int arr[], int n, int x){ int result = 0; //managing with duplicate values unordered_map<int, int> m; for (int i=0; i<n ; i++){ int curr_xor = x^arr[i]; if (m.find(curr_xor) != m.end()) result += m[curr_xor]; m[arr[i]]++; } return result; } int main(){ int arr[] = {2, 5, 2}; int n = sizeof(arr)/sizeof(arr[0]); int x = 0; cout << "Count of pairs with given XOR = " << count_pair(arr, n, x); return 0; }
輸出
Count of pairs with given XOR = 1
廣告