Re: [algogeeks] Amazom interview question

2010-12-04 Thread ankit sablok
this is the general task scheduling problem apply greedy algorithms

On Sat, Dec 4, 2010 at 10:13 AM, Prims topcode...@gmail.com wrote:

 You are given 'n' appointments. Each appointment contains startime and
 endtime. You have to retun all conflicting appointments efficiently

 starttime and endtime can range from a few min to few years.

 --
 You received this message because you are subscribed to the Google Groups
 Algorithm Geeks group.
 To post to this group, send email to algoge...@googlegroups.com.
 To unsubscribe from this group, send email to
 algogeeks+unsubscr...@googlegroups.comalgogeeks%2bunsubscr...@googlegroups.com
 .
 For more options, visit this group at
 http://groups.google.com/group/algogeeks?hl=en.



-- 
You received this message because you are subscribed to the Google Groups 
Algorithm Geeks group.
To post to this group, send email to algoge...@googlegroups.com.
To unsubscribe from this group, send email to 
algogeeks+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.



Re: [algogeeks] Amazom interview question

2010-12-04 Thread mo...@ismu
sort the jobs according to their starting time and check  wheather  a job
starting time is less than its  previous job ending time

-- 
You received this message because you are subscribed to the Google Groups 
Algorithm Geeks group.
To post to this group, send email to algoge...@googlegroups.com.
To unsubscribe from this group, send email to 
algogeeks+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.



[algogeeks] Amazom interview question

2010-12-03 Thread Prims
You are given 'n' appointments. Each appointment contains startime and
endtime. You have to retun all conflicting appointments efficiently

starttime and endtime can range from a few min to few years.

-- 
You received this message because you are subscribed to the Google Groups 
Algorithm Geeks group.
To post to this group, send email to algoge...@googlegroups.com.
To unsubscribe from this group, send email to 
algogeeks+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.