Question: Quine-McCluskey Method Write out a a pseudo code for Quine-McCluskey method then implement that code in java. Input specifications: (1) The first line of input
Quine-McCluskey Method
Write out a a pseudo code for Quine-McCluskey method then implement that code in java.
Input specifications: (1) The first line of input file specifies the number of input and output signals. A maximum number of input signals is 100 (i.e., IN00 to IN99) and a maximum number of output signal is 26 (i.e., A to Z). (2) The next N lines of input file specifies the output values for each output signal in an ascending numerical order starting with 0. Sample input file: (3 inputs and 1 output)
3 1
0
0
1
0
1
1
1
0 Output specifications: A Boolean expression for each output signal printed to the screen neatly and completely including the with parentheses for each logical operation. Sample output (for the sample input above): A = (IN00 * IN01) + (IN01 * IN02)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
