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:08] – mugabej | courses:cs211:winter2012:journals:jeanpaul:chaptter2section3 [2012/01/23 23:56] (current) – mugabej | ||
---|---|---|---|
Line 48: | Line 48: | ||
* Similarly, WomanPref[// | * Similarly, WomanPref[// | ||
* The space needed to give preference to all 2//n// persons is O(n< | * The space needed to give preference to all 2//n// persons is O(n< | ||
+ | |||
+ | To implement our algorithm in constant time, we need to implement each of the following in constant time: | ||
+ | * We need to be able to identify a free man | ||
+ | * For a man,//m//, we need to identify the highest ranked woman to whom he has not yet proposed | ||
+ | * For a woman,// | ||
+ | * For a woman,// | ||
+ | |||
+ | - __Selecting a free man__: We need to maintain a list of free men as a linked list. To select a man, we take the first man //m// on the list. If //m// becomes engaged, we delete //m// from the list. If some other man //m'// becomes free, he's inserted at the front of the list. All of these operations are thus done in constant time using a linked list | ||
+ | - __Identifying the highest-ranked woman to whom a man //m// has not yet proposed__: To achieve this: | ||
+ | | ||
+ | * We initialize **Next** = 1 for all men // | ||
+ | * 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**[// | ||
+ | - __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, | ||
+ | |||
+ | |||
+ | |||