1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129
| function validateInput( boysPreferences: string[][], girlsPreferences: string[][] ): void { const n = boysPreferences.length; if (n !== girlsPreferences.length) { throw new Error("男孩和女孩的数量必须相等。"); }
const boys = new Set<string>(); const girls = new Set<string>(); for (let i = 0; i < n; i++) { boys.add(`b${i + 1}`); girls.add(`g${i + 1}`); }
for (let i = 0; i < n; i++) { const boyPref = boysPreferences[i]; if (boyPref.length !== n) { throw new Error(`男孩 b${i + 1} 的偏好列表长度必须等于总数。`); } const boyPrefSet = new Set(boyPref); if ( boyPrefSet.size !== n || !Array.from(boyPrefSet).every((g) => girls.has(g)) ) { throw new Error(`男孩 b${i + 1} 的偏好列表不完整或包含重复。`); }
const girlPref = girlsPreferences[i]; if (girlPref.length !== n) { throw new Error(`女孩 g${i + 1} 的偏好列表长度必须等于总数。`); } const girlPrefSet = new Set(girlPref); if ( girlPrefSet.size !== n || !Array.from(girlPrefSet).every((b) => boys.has(b)) ) { throw new Error(`女孩 g${i + 1} 的偏好列表不完整或包含重复。`); } } }
function getIndex(id: string): number { return parseInt(id.substring(1)) - 1; }
function findStableMatching( boysPreferences: string[][], girlsPreferences: string[][] ): Map<string, string> { validateInput(boysPreferences, girlsPreferences);
const n = boysPreferences.length; const boyToGirl = new Map<string, string>(); const girlToBoy = new Map<string, string>(); const freeBoys: string[] = []; for (let i = 0; i < n; i++) { freeBoys.push(`b${i + 1}`); }
const girlRankings = new Map<string, Map<string, number>>(); for (let i = 0; i < n; i++) { const girl = `g${i + 1}`; const ranking = new Map<string, number>(); for (let j = 0; j < girlsPreferences[i].length; j++) { const boy = girlsPreferences[i][j]; ranking.set(boy, j); } girlRankings.set(girl, ranking); }
while (freeBoys.length > 0) { const boy = freeBoys.shift()!; const preferences = boysPreferences[getIndex(boy)];
for (const girl of preferences) { if (!girlToBoy.has(girl)) { boyToGirl.set(boy, girl); girlToBoy.set(girl, boy); break; } else { const currentBoy = girlToBoy.get(girl)!; const ranking = girlRankings.get(girl)!; const currentRank = ranking.get(currentBoy)!; const newRank = ranking.get(boy)!;
if (newRank < currentRank) { boyToGirl.delete(currentBoy); girlToBoy.delete(girl); boyToGirl.set(boy, girl); girlToBoy.set(girl, boy); freeBoys.push(currentBoy); break; } } } }
return boyToGirl; }
const boysPreferences: string[][] = [ ["g2", "g4", "g3", "g1", "g5"], ["g3", "g2", "g1", "g5", "g4"], ["g2", "g1", "g3", "g5", "g4"], ["g4", "g3", "g5", "g1", "g2"], ["g2", "g4", "g3", "g1", "g5"], ];
const girlsPreferences: string[][] = [ ["b2", "b5", "b1", "b3", "b4"], ["b2", "b3", "b1", "b4", "b5"], ["b4", "b2", "b5", "b1", "b3"], ["b3", "b1", "b5", "b2", "b4"], ["b5", "b3", "b4", "b1", "b2"], ];
const stableMatching = findStableMatching(boysPreferences, girlsPreferences);
console.log("稳定匹配结果:"); for (const [boy, girl] of stableMatching.entries()) { console.log(`${boy} ↔ ${girl}`); }
|