Best Fit Scheduling Algorithm
        Posted  
        
            by Teegijee
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by Teegijee
        
        
        
        Published on 2010-04-30T17:06:01Z
        Indexed on 
            2010/04/30
            17:47 UTC
        
        
        Read the original article
        Hit count: 574
        
I'm writing a scheduling program with a difficult programming problem. There are several events, each with multiple meeting times. I need to find an arrangement of meeting times such that each schedule contains any given event exactly once, using one of each event's multiple meeting times.
Obviously I could use brute force, but that's rarely the best solution. I'm guessing this is a relatively basic computer science problem, which I'll learn about once I am able to start taking computer science classes. In the meantime, I'd prefer any links where I could read up on this, or even just a name I could Google.
© Stack Overflow or respective owner