- #1
gruba
- 206
- 1
Homework Statement
In a factory, machines are making cars (1-n) along the production line. One machine is making one part on the existing construction (part 1 is made by machine 1,...). Installation order of some parts is not important, but some parts have to be installed before others. Engineers have put together a dependence list for car parts as a table:
1 2
2 4
3 2,1
4
5 3,8,7,6
6 4,7
7 3,8
8 4,3,1
where the first column represents parts (1-8), and the second column represents preconditions for installment of each part. That is the list of parts (second column) whose installment must be done before the installment of current part (first column).
For each given list (second column), find the order of machines along the production line such that the manufacturing process of a car is done without interruptions, if such order exists. Also, find lists from the given table that give orders with interruptions.
Design an algorithm for this problem.
Show the final order of machines along the production line, if it exists.
Homework Equations
-Hash functions
-Hash tables
The Attempt at a Solution
For each part (1-8, first column) we have to find a hash function without collisions that satisfies the second column in the table (if possible).
This is obviously the reversed process from generating hash table from given hash function.
I have found that the only possible order of machines along with production line, such that there is no interruption in the process is:
[tex]4,2,1,3,8,7,6,5[/tex]
Also, lists [itex]4-7,4-3-1[/itex] are causing an interruption (collision) in a process.
Question: How can we generate hash function from hash table (reversed algorithm from standard, where hash function is given - create hash table)?
Last edited: