在C ++中找到满足ab = cd的数组中的所有对(a,b)和(c,d)
假设我们有一个数组A,我们必须从该数组中选择两对(a,b)和(c,d),这样ab=cd。令数组A=[3、4、7、1、2、9、8]。输出对是(4,2)和(1,8)。为了解决这个问题,我们将遵循以下步骤-
对于i:=0到n-1,执行
得到乘积=arr[i]*arr[j]
如果产品不存在于哈希表中,则Hash[product]:=(i,j)
如果哈希表中存在乘积,则打印先前和当前元素。
对于j:=i+1到n-1,做
示例
#include <iostream>
#include <unordered_map>
using namespace std;
void displayPairs(int arr[], int n) {
bool found = false;
unordered_map<int, pair < int, int > > Hash;
for (int i=0; i<n; i++) {
for (int j=i+1; j<n; j++) {
int prod = arr[i]*arr[j];
if (Hash.find(prod) == Hash.end())
Hash[prod] = make_pair(i,j);
else{
pair<int,int> pp = Hash[prod];
cout << "(" << arr[pp.first] << ", " << arr[pp.second] << ") and (" << arr[i]<<", "<<arr[j] << ")"<<endl; found = true;
}
}
}
if (found == false)
cout << "No pairs have Found" << endl;
}
int main() {
int arr[] = {1, 2, 3, 4, 5, 6, 7, 8};
int n = sizeof(arr)/sizeof(int);
displayPairs(arr, n);
}输出结果
(1, 6) and (2, 3) (1, 8) and (2, 4) (2, 6) and (3, 4) (3, 8) and (4, 6)
热门推荐
10 新年门口花束祝福语简短
11 盘锦结婚祝福语大全简短
12 父母生日祝福语 简短独特
13 家庭恩爱祝福语简短英文
14 高考俄语祝福语大全简短
15 虎年祝福语 诗句唯美简短
16 生日婚礼祝福语简短精辟
17 虎年喝酒拜年祝福语简短
18 教师闺蜜祝福语简短