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 22:04] – mugabej | courses:cs211:winter2012:journals:jeanpaul:chaptter2section3 [2012/01/23 23:56] (current) – mugabej | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | =========2.3 Implementing The Stable Matching Algorithm using Lists and Arrays========= | + | =======2.3 Implementing The Stable Matching Algorithm using Lists and Arrays======= |
+ | |||
+ | To asymptotically analyze the running time of an algorithm, we don't need to implement and run it, but we definitely have to think about how the data will be represented and manipulated in an implementation of the algorithm so we could bound the number of computational steps it takes. This section looks at how to implement the Gale-Shapley algorithm using lists and arrays. In the Stable Matching Problems that the algorithm solves, we need to think about how the rankings will be represented, | ||
+ | |||
+ | ===== Algorithm Analysis ===== | ||
+ | |||
+ | |||
+ | Let's focus on a single list, such as a list of women in order of preference by a single man. | ||
+ | * The simplest way to keep a list of //n// elements is to use an Array A of length //n//. | ||
+ | * In such an array, let A[i] be the i< | ||
+ | * With such an array we can: | ||
+ | * Determine the i< | ||
+ | * Determine if a given element //e// belongs to the list by checking the elements one by one in O(n) time, assuming we don't know the order in which the elements are arranged in A. | ||
+ | * Determine if the given element //e// belongs to A in O(log//n//) using //binary search// if A is sorted | ||
+ | |||
+ | For dynamically maintaining a list of elements that change a lot over time such as a list of free men, an array is less preferable. Indeed, we our collection needs to grow and shrink very frequently throughout the execution of the algorithm. Thus we choose an alternative to an array: the linked list. | ||
+ | |||
+ | In a linked list, each element points to the next in the list. Thus: | ||
+ | * For each element //v//, we maintain a pointer to the next element | ||
+ | * The " | ||
+ | * The pointer" | ||
+ | * By starting from First, the traversal of the entire list can be done in time proportional to its length | ||
+ | * To implement such a list: | ||
+ | * We would allocate a record //e// for each element we want to put in the list | ||
+ | * For each record //e//: | ||
+ | * //e//.val: contains the value of the record | ||
+ | * //e//.next: contains a pointer to the next element | ||
+ | * If we want to implement a //doubly linked list//, which is traversable in both directions: | ||
+ | * In addition of what the singly linked list contained, we add //e//.Prev which points to the previous element in the list(// | ||
+ | * The pointer " | ||
+ | * Thus, with a //doubly linked// list: | ||
+ | * // | ||
+ | * // | ||
+ | |||
+ | Disadvantage of //linked lists//: To find the i< | ||
+ | |||
+ | Using arrays and linked lists, it takes us O(n) to convert back and forth. | ||
+ | |||
+ | ===== Implementation of the algorithm ===== | ||
+ | |||
+ | The algorithm takes O(n< | ||
+ | * Let's assume the set of men and women are both {1,...,n) | ||
+ | * To do this, we can order the men and women, and associate number i with the i< | ||
+ | * In this way, we have an indexed array of all men or all women | ||
+ | * We need preference lists for each man and each woman: | ||
+ | * We use 2 arrays: one for women' | ||
+ | * ManPref[// | ||
+ | * Similarly, WomanPref[// | ||
+ | * 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 //m//. | ||
+ | * 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, | ||
+ | |||
+ | |||
+ | |||
- | To asymptotically analyze the running time of an algorithm, we don't need to implement and run it, but we definitely have to think about how the data will be represented and manipulated in an implementation of the algorithm so we could bound the number of computational steps it takes. This section looks at how to implement the Gale-Shapley algorithm using lists and arrays. In the Stable Matching Problems that the algorithm solves, we need to think about how the rankings will be represented, |