Another way to solve the Dining Philosopher problem (need a point in the right direction)
Hello, for a programming assignment I have been asked to implement a solution to the Dining Philosopher problem. I must do so in two ways: Use the wait() and notifyAll() mechanism Using an existing concurrent data structure provided in the Java API I have already complete the first implementation. Which concurrent data structure is m...