Right rotate functions for byte values : shift « Data Types « C++ Tutorial

Home
C++ Tutorial
1.Language Basics
2.Data Types
3.Operators statements
4.Array
5.Development
6.Exceptions
7.Function
8.Structure
9.Class
10.Operator Overloading
11.Pointer
12.File Stream
13.template
14.STL Introduction
15.string
16.vector
17.list
18.bitset
19.set multiset
20.valarray
21.queue stack
22.deque
23.map multimap
24.STL Algorithms Modifying sequence operations
25.STL Algorithms Non modifying sequence operations
26.STL Algorithms Binary search
27.STL Algorithms Sorting
28.STL Algorithms Merge
29.STL Algorithms Min Max
30.STL Algorithms Iterator
31.STL Algorithms Heap
32.STL Algorithms Helper
C / ANSI-C
C Tutorial
C++
Visual C++ .NET
C++ Tutorial » Data Types » shift 
2.14.4.Right rotate functions for byte values
/*
Quote from: C++: A Beginner's Guide, Second Edition 

# Publisher: McGraw-Hill Osborne Media; 2 edition (December 3, 2003)
# Language: English
# ISBN-10: 0072232153
# ISBN-13: 978-0072232158
*/
 
#include <iostream> 
using namespace std; 
 
unsigned char rrotate(unsigned char val, int n)
void show_binary(unsigned int u)
 
int main() 

  char ch = 'T'
 
  cout << "Original value in binary:\n"
  show_binary(ch)
 
  cout << "Rotating right 8 times:\n"
  for(int i=0; i < 8; i++) { 
    ch = rrotate(ch, 1)
    show_binary(ch)
  
 
  return 0

 
// Right-rotate a byte n places. 
unsigned char rrotate(unsigned char val, int n

  unsigned int t; 
 
  t = val; 
 
  // First, move the value 8 bits higher. 
  t = t << 8
 
  for(int i=0; i < n; i++) { 
    t = t >> 1
 
    /* If a bit shifts out, it will be in bit 7 
       of the integer t. If this is the case, 
       put that bit on the left side. */ 
    if(t & 128)  
      t = t | 32768// put a 1 on left end 
  
 
  /* Finally, move the result back to the 
     lower 8 bits of t. */ 
  t = t >> 8
 
  return t; 

 
// Display the bits within a byte. 
void show_binary(unsigned int u

  int t; 
 
  for(t=128; t>0; t = t/2
    if(u & tcout << "1 "
    else cout << "0 "
 
  cout << "\n"
}
Original value in binary:
0 1 0 1 0 1 0 0
Rotating right 8 times:
0 0 1 0 1 0 1 0
0 0 0 1 0 1 0 1
1 0 0 0 1 0 1 0
0 1 0 0 0 1 0 1
1 0 1 0 0 0 1 0
0 1 0 1 0 0 0 1
1 0 1 0 1 0 0 0
0 1 0 1 0 1 0 0
2.14.shift
2.14.1.Shift left
2.14.2.Shift right
2.14.3.Left rotate functions for byte values
2.14.4.Right rotate functions for byte values
2.14.5.Demonstrate bitwise left shift
2.14.6.Demonstrate bitwise right shift
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.