That's not true. Your platform will not split >= into == and >. The implementation varies from platform to platform and compiler to compiler. From Assembly(https://godbolt.org/g/6MCvQq):
Both are true. || is logic or operator in some languages(which belongs to logic operators). I assume you have limited the symbols to c++(because you didn't use the more general terms like logic or and logic and. In standard ml, logic or is expressed as or, same for logic and)
In c++, please correct = to ==. The former is a Direct assignment operator, while the latter is Equal to operator. If a satisfy the condition, the b will not be used. For example:
if (a && b)
is equal to
if (a)
if(b)
...
BTW, in some algorithms, if you want to judge if a node exists (like arr[x][y] == 'x'), it should be put in b rather than a. Because sometimes a is used to filter out-of-range conditions.
Update:
That's not true. Your platform will not split
>=
into==
and>
. The implementation varies from platform to platform and compiler to compiler. From Assembly(https://godbolt.org/g/6MCvQq):=>
=>
Both have 3 instructions.
Also take a look at these awesome answers: https://stackoverflow.com/que...
Both are true.
||
is logic or operator in some languages(which belongs to logic operators). I assume you have limited the symbols to c++(because you didn't use the more general terms likelogic or
andlogic and
. In standard ml,logic or
is expressed asor
, same forlogic and
)In c++, please correct
=
to==
. The former is aDirect assignment
operator, while the latter isEqual to
operator. Ifa
satisfy the condition, theb
will not be used. For example:is equal to
BTW, in some algorithms, if you want to judge if a node exists (like
arr[x][y] == 'x'
), it should be put inb
rather thana
. Because sometimesa
is used to filter out-of-range conditions.