Saturday, June 18, 2011

LOGIC GATES (NOT, AND, OR, XOR)

What is a LOGIC GATE A logic gate is an elementary building block of a digital circuit . Most logic gates have two inputs and one output. At any given moment, every terminal is in one of the two binary conditions low (0) or high (1), represented by different voltage levels. The logic state of a terminal can, and generally does, change...

Monday, June 6, 2011

Binary Search Algorithm + Program

What is binary search ? Binary search starts by searching of the data in the elements at the mid of the array to determine if the target is in the first or second half of the list. If it is in the first half we do not need to check the second half. If its in the second half we need not check the first half. In other words we estimate half the list from further consideration....