- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我正在为一个非常简单的问题寻找配对匹配算法:
我想找到一种算法,为任何给定的人群产生可能的最佳结果。
附加要求:绝不能通过添加附加类别或偏好来降低一个人最终未配对的可能性。 (但是,如果删除类别或偏好会损害他们的机会,那也没关系。)
对于更复杂的场景(如稳定婚姻问题)有一些算法,但我的情况似乎很简单 - 我只是不确定如何去做。总人数将在 20-50 人之间,因此低效的解决方案也可以。
“1. A -> A,B”表示人 1 属于类别 A,并且想要匹配 A 或 B 中的某人。
假设我们有这些人:
我认为我们可以通过检查看到最佳解决方案是 1+4、2+5、3+6。
如果上面的文字描述不够正式,我的意思是:
最佳答案
这是一种低效的解决方案,但我认为它可行。首先,我使用具有 3 个私有(private)态度 id、类别和偏好的类 person。
public class Person {
private String category;
private String pref;
private int id;
/**
* The strings a,b will be A for A, B for B and A,B for Both
* @param a expressing the category that they want to go
* @param b expressing the preference
*/
Person(int id,String a,String b){
this.id=id;
category=a;
pref=b;
}
public String getCategory(){
return category;
}
public String getPref(){
return pref;
}
public int getId(){
return id;
}
在主课中,我从一个名为 a.txt 的 txt 文件中获取数据,每个人的格式必须是 A -> B,就像你给的那样。它运行 3 个私有(private)方法来首先获得给出 2 分的匹配项,然后是给出 1 分的数学,然后填充其余部分。
import java.io.BufferedReader;
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.io.IOException;
import java.util.ArrayList;
public class Pairing {
private ArrayList<Person> queue;
private ArrayList<String> matches;
private int ids;
public Pairing() {
queue = new ArrayList<>();
ids = 0;
}
public void addPerson(String category, String preference) {
queue.add(new Person(ids, category, preference));
ids++;
}
public ArrayList<String> getMatches() {
matches = new ArrayList<>();
System.out.println(ids);
checkFor2Points();
checkFor1Point();
//matchTheRest();
return matches;
}
/**
* At the begin matches the persons who has strict preferences and belongs
* in the first 2 categories, then uses the flexibility that A,B category
* provides to find the rest matches that will give 2 points.
*/
private void checkFor2Points() {
Person c, p;
for (int j = 0; j < queue.size(); j++) {
p = queue.get(j);
System.out.println(p.getCategory() + " " + p.getPref());
if ((p.getCategory().equals("A") || p.getCategory().equals("B")) && (p.getPref().equals("A") || p.getPref().equals("B"))) {
for (int i = 0; i < queue.size(); i++) {
c = queue.get(i);
if (c.getPref().equals(p.getCategory()) && c.getCategory().equals(p.getPref()) && c.getId() != p.getId()) {
matches.add(p.getId() + 1 + "+" + (c.getId() + 1));
queue.remove(c);
queue.remove(p);
} else if (c.getCategory().equals("A,B") && c.getPref().equals(p.getCategory()) && c.getId() != p.getId()) {
matches.add(p.getId() + 1 + "+" + (c.getId() + 1));
queue.remove(c);
queue.remove(p);
}
}
}
}
for (int j = 0; j < queue.size(); j++) {
p = queue.get(j);
if (p.getPref().equals("A,B")) {
for (int i = 0; i < queue.size(); i++) {
c = queue.get(i);
if (c.getPref().equals(p.getCategory()) && c.getId() != p.getId()) {
matches.add(p.getId() + 1 + "+" + (c.getId() + 1));
queue.remove(c);
queue.remove(p);
}
}
}
}
}
private void checkFor1Point() {
Person c, p;
for (int j = 0; j < queue.size(); j++) {
p = queue.get(j);
for (int i = 0; i < queue.size(); i++) {
c = queue.get(i);
if ((p.getCategory().equals(c.getPref()) || p.getPref().equals(c.getCategory())) && p.getId() != c.getId()) {
matches.add(p.getId() + 1 + "+" + (c.getId() + 1));
queue.remove(c);
queue.remove(p);
}
}
}
}
private void matchTheRest() {
for (int i = 0; i < queue.size(); i += 2) {
matches.add(queue.get(i).getId() + "+" + queue.get(i + 1).getId());
queue.remove(queue.get(i));
queue.remove(queue.get(i + 1));
if (queue.size() == 1) {// that means that the ids is an odd number
return;
}
}
}
/**
* @param args the command line arguments
* @throws java.io.FileNotFoundException
*/
public static void main(String[] args) throws FileNotFoundException, IOException {
String getLineString;
String toSplit[];
BufferedReader in = new BufferedReader(new FileReader("a.txt"));
Pairing pair = new Pairing();
getLineString = in.readLine();
while (getLineString != null) {
toSplit = getLineString.split(" -> ");
pair.addPerson(toSplit[0], toSplit[1]);
getLineString = in.readLine();
}
ArrayList<String> pairs = pair.getMatches();
for (int i = 0; i < pairs.size(); i++) {
System.out.println(pairs.get(i));
}
}
关于algorithm - 具有二进制偏好的简单配对匹配算法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46861745/
我有一个服务器程序(适用于所有三个主要操作系统),它是用 C++ 创建的,它努力连接两个陌生人进行通信。我当前的模型似乎已经过时了,我只是想知道是否有更好的方法来为客户提供服务。 -服务器收到连接请求
我希望有人能告诉我 GoogleTV 如何与本地 Youtube 应用配对。 我感兴趣的是“第一屏”GoogleTV/SmartTV 功能。 据我目前所知,“第二屏”应用程序需要使用与配对服务(来自
感谢下面的提示 • 您需要一次遍历字符串一个字符(for 循环或 while 循环) 当您点击 ,这是您的结束标记 • 现在检查> 之前的字符。是/吗? • 是:查看堆栈顶部。该字符串与 之间的字符
我正在使用 Node.js 和 WebSocket 创建基本的一对一聊天。每次客户端连接时,都会向他们发送其 ID 以及 salt+id 的 MD5 哈希值。然后,他们需要与另一个客户配对。当它们配对
我刚刚开始深入研究 Racket 宏,并尝试制作一个简洁的宏定义宏。我想扩展这样的表达式: (macro id (param) replacement1 (params ...) re
我有一个 foreach 循环(看,它在下面),我得到了一些元素。将此数据存储到 MySQL 中时,我想选择每个“count[]”所属的类别(此处标记为“interaction[]”)。例如,如果第
是否有可能找到一种更好的/模块化的方式来为配对分配相同的颜色,而不是像我目前实现的那样对它们进行硬编码? 如果对象 fname 匹配,则分配相同的颜色。 以下是 javascript 对象的子集。 d
在我的 iPhone 应用程序中,我想与固件设备通信。在连接期间,他们可以要求提供配对 key ,但他们说他们没有提供输入 key 的规定。 在这种情况下,USP(用户智能手机)永远不知道输入的 ke
这个问题在这里已经有了答案: How to merge every two lines into one from the command line? (21 个回答) 关闭 6 年前。 使用一个简
function pair(str) { var dna = []; var dnaarr = []; for(var i = 0; i < str.length; i++) {
我是一个相对年轻的开发人员,我对一些事情感到困惑。 这是我的代码: function pairElement(str) { var arr = []; var pairs = [
我有一个脚本,可以从文本文件中读取并插入元素,以便可以对它们进行样式设置和显示。但是,我现在想在 DIV 中配对两个元素。这是代码: var lines = request.responseText.
.Spotify:hover img { display:block; position: absolute; z-index: 0; top:17%; lef
我正在努力使用摩托罗拉随 RAZR 提供的 BT 4.0 API。在 one of their documents它声明在连接和使用他们的框架之前使用 Android API 进行配对。根据他们的说明
谁能告诉我一次可以通过蓝牙将多少台设备与 iPhone 配对..需要帮助..直到现在我还没有确切的数字。 最佳答案 在 iOS 6.1.4 中,低功耗蓝牙设备的当前限制是 10 个同时连接(至少在 N
我正在创建一个扩展推送通知的 Android Wear 应用程序。当推送通知进来时,我的应用程序会从服务器下载大约 10 张图像,并在 watch 上显示这些额外的图像。这些图像特定于 android
关闭。这个问题需要details or clarity .它目前不接受答案。 想改进这个问题?通过 editing this post 添加详细信息并澄清问题. 8年前关闭。 Improve this
我有一个类似于使用以下命令获得的数据表: dt <- data.table( time = 1:8, part = rep(c(1, 1, 2, 2), 2), type = rep(c(
为了回应有用的评论,我编辑了原始问题(我假设 for 循环和应用循环给出不同的结果)。 我正在使用 R 运行大量 2 组 t 检验,使用来自分隔表的输入。根据此处和其他地方的建议,我尝试了“for-l
是否可以将脚本(例如 MathJax)加载到 EpicEditor 预览 iFrame 中?我希望我的预览是正确的 Markdown,然后运行 javascript 来预览 MathJax 内容。
我是一名优秀的程序员,十分优秀!