某社交网络中,给定一个用户列表和他们之间的好友关系,// 求出具有最多共同好友的用户对。(转换成邻接表)

该博客主要围绕图算法展开,以某社交网络为背景,给出问题:在给定用户列表和好友关系下,求出具有最多共同好友的用户对。并提供了C++代码实现该功能,包含函数定义、裁判测试程序样例、输入输出样例等。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

//图算法
//题目:某社交网络中,给定一个用户列表和他们之间的好友关系,
// 求出具有最多共同好友的用户对。
//
//问题函数定义:
//
//cpp
//std::pair<int, int> maxCommonFriends(const std::vector<std::pair<int, int>>& friendships, int numUsers);
//裁判测试程序样例:
//
//cpp
#include<iostream>
#include<stack>
#include <vector>
#include<string>
#include<algorithm>
#include<unordered_map>
#include <climits>
#include<queue>
#include<unordered_set>
#include<cctype>
using namespace std;
std::pair<int, int> maxCommonFriends(const std::vector<std::pair<int, int>>& friendships, int numUsers) {
    vector<vector<int>> lj(numUsers);
    for (int i = 0; i < friendships.size(); i++) {
        lj[friendships[i].first].push_back(friendships[i].second);
        lj[friendships[i].second].push_back(friendships[i].first);
    }
    int a, b;
    int maxc=INT_MIN;
    for (int i = 0; i < lj.size(); i++) {
        for (int j = i+1; j < lj.size(); j++) {
            int cout = 0;
            for (int q = 0; q < lj[i].size(); q++) {
                if (find(lj[j].begin(), lj[j].end(), lj[i][q])!=lj[j].end()) {
                    cout++;
                }
            }
            if (find(lj[i].begin(), lj[i].end(), j) != lj[i].end()) {
                cout++;
            }
            if (cout > maxc) {
                a = i;
                b = j;
                maxc = cout;
            }
        }
    }
    return make_pair(a, b);
}
int main() {
    std::vector<std::pair<int, int>> friendships = { {0, 1}, {0, 2}, {1, 2}, {1, 3}, {2, 3} };
    int numUsers = 4;
    auto result = maxCommonFriends(friendships, numUsers);
    std::cout << "User " << result.first << " and User " << result.second << " have the most common friends." << std::endl;
    return 0;
}
//输入样例:
//
//friendships = { {0, 1}, {0, 2}, {1, 2}, {1, 3}, {2, 3} }
//numUsers = 4
//输出样例:
//
//User 1 and User 2 have the most common friends.

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值