My answer with 2 days old and over 200 up votes, pretty well structured and also funny* was deleted by a mod, without any appropriate reason.
Why did it take 2 days and 200+ up votes to remove my answer?
* Was the fun the reason?
Answer at the time deleted.
As a sock lover it's difficult to compare socks, Is a red sock greater or equals than a green sock? or Is a sock with fingertips lower than a sock without them?
I offer a set of solutions:
The mom's algorithm O(1):
- Get the socks
- Ask mom to pair them
The lazy algorithm O(n):
- Keep in a bucket all the socks
- And every time you need a sock just pick one O(1)
- Find the other one at most O(n)
The Bucket algorithm:
- Enumerate each pair of sock with a number (from 1 to n)
- Make a slot for each pair of socks with a number; Space: O(n)
- Put each sock in the corresponding slot; Time O(1)
Naive approach:
- Pick a sock; Time: O(1)
- Pick another sock; O(1)
- If the two socks matches pair them put it a different basket
- If not keep those socks in a little fast table for further requests.
"Deal with it" algorithm:
- Pick one sock
- Pick another sock
- Deal with it!
Protip
- Once you have remove your socks try to pair them, with a rubber band. (maybe socks with velcro)
- So when you have to wash the socks it will wash and dry in pairs.
- After pair them, remove the rubber band.
Note: If the weather is warm enough you could avoid the use of socks by wearing sandals.
Update: I'm also curious what kind of algorithm uses Dr. Sheldon Cooper to pair socks.
Last edit
As a sock lover it's difficult to compare socks, Is a red sock greater or equals than a green sock? or Is a sock with fingertips lower than a sock without them?
I offer a set of solutions:
The mom's algorithm O(1):
- Get the socks
- Ask mom to pair them
Clarification: Yes, this is (obviously) a distributed approach, you can add workers (in this case moms) and you can get the job done faster. And as a matter of fact, the truth is that my mother always use this algorithm on me.
The lazy algorithm O(n):
- Keep in a bucket all the socks
- And every time you need a sock just pick one O(1)
- Find the other one at most O(n)
Clarification: For all pairs of socks the time complexity is O(n^2), but from the human perspective (avoid all the work until is absolute necessary) this approach has more appeal.
The Bucket algorithm:
- Enumerate each pair of sock with a number (from 1 to n)
- Make a slot for each pair of socks with a number; Space: O(n)
- Put each sock in the corresponding slot; Time O(1)
Clarification: Yeah, this is a classical bucket sort. The time complexity is better if the number of socks groups is relative small, compared to all the pair of socks.
Naive approach:
- Pick a sock; Time: O(1)
- Pick another sock; O(1)
- If the two socks matches pair them put it a different basket
- If not keep those socks in a little fast table for further requests.
"Deal with it" algorithm:
- Pick one sock
- Pick another sock
- Deal with it!
Clarification: This solution actually works and it's the most efficient if all the socks are equal. It also works if you are not very exigent.
Protip
- Once you have remove your socks try to pair them, with a rubber band. (maybe socks with velcro)
- So when you have to wash the socks it will wash and dry in pairs.
- After pair them, remove the rubber band.
Clarification: The trick here is why separate the socks in the first place? (yeah that is a rhetorical question) if you can always maintain the pairs together.
Note: If the weather is warm enough you could avoid the use of socks by wearing sandals.
Clarification: Another valid solution is to avoid using socks in the first place.