rotation.cpp

来自「Think in C++ 2nd」· C++ 代码 · 共 32 行

CPP
32
字号
//: C03:Rotation.cpp {O}

// From Thinking in C++, 2nd Edition

// Available at http://www.BruceEckel.com

// (c) Bruce Eckel 1999

// Copyright notice in Copyright.txt

// Perform left and right rotations



unsigned char rol(unsigned char val) {

  int highbit;

  if(val & 0x80) // 0x80 is the high bit only

    highbit = 1;

  else

    highbit = 0;

  // Left shift (bottom bit becomes 0):

  val <<= 1;

  // Rotate the high bit onto the bottom:

  val |= highbit;

  return val;

}



unsigned char ror(unsigned char val) {

  int lowbit;

  if(val & 1) // Check the low bit

    lowbit = 1;

  else

    lowbit = 0;

  val >>= 1; // Right shift by one position

  // Rotate the low bit onto the top:

  val |= (lowbit << 7);

  return val;

} ///:~

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?