I need to search an element in an array and the key is going to be supplied by one processor and the other two processors are going to search the key in the sequence.
Everything needs to be parallel. Using Threads don't bring exact parallelism ?
Processor 1 --------->Processor 2 (search)
--------->Processor 3 (search) and the search method also needs to be parallel. Can anyone suggest
how can i approach this problem ?
which algorithm can used effectively for parallel search ?