吴冕志 пре 1 година
родитељ
комит
37224203c1
1 измењених фајлова са 2 додато и 1 уклоњено
  1. +2
    -1
      lab2/datalab-handout/bits.c

+ 2
- 1
lab2/datalab-handout/bits.c Прегледај датотеку

@ -176,7 +176,8 @@ int isTmax(int x) {
int xplusone = x + 1;
int all1 = xplusone ^ x;
int allzero = all1 + 1;
return !allzero;
int notnegative1 = !(x ^ (-1));
return !(allzero | notnegative1);
}
/*
* allOddBits - return 1 if all odd-numbered bits in word set to 1

Loading…
Откажи
Сачувај