Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
courses:cs211:winter2012:journals:jeanpaul:chaptter2section3 [2012/01/23 23:34] – mugabej | courses:cs211:winter2012:journals:jeanpaul:chaptter2section3 [2012/01/23 23:56] (current) – mugabej | ||
---|---|---|---|
Line 61: | Line 61: | ||
* If a man //m// needs to propose to a woman, he will propose to //w// = ManPref[// | * If a man //m// needs to propose to a woman, he will propose to //w// = ManPref[// | ||
* Once //m// proposes to //w//, we increment the value of **Next**[// | * Once //m// proposes to //w//, we increment the value of **Next**[// | ||
+ | - __Identifying the man // | ||
+ | * We can maintain an array **Current** of length //n// | ||
+ | * **Current** = //null// if //w// is not currently engaged | ||
+ | * Thus **Current** = //null// for all women //w// at the start of the algorithm. | ||
+ | - __Deciding which of //m// or //m'// is preferred by //w//__:To achieve constant time for this step: | ||
+ | * At the start of the algorithm, we create an //n// X //n// array **Ranking** | ||
+ | * **Ranking**[// | ||
+ | * Creating the array **Ranking** is O(// | ||
+ | * To decide which of //m// or //m'// is preferred by //w//, we just compare the values **Ranking**[// | ||
+ | |||
+ | All of the data structures mentioned above help us implement the Gale-Shapley algorithm in O(// | ||
+ | |||
+ | |||
+ | To be honest, I hadn't understood quite well how we can specify the woman //w// a man //m// will propose to, and do it in constant time,before I reread the section and get how we can work it out. The preference lists representation was a little bit trickier because I was thinking of a different way of implementing them, but I'm now convinced the method in the book is really efficient. | ||
+ | |||
+ | |||
+ | This section was really interesting, | ||
+ | |||
+ | |||
+ | |||
+ | |||
+ |