bits.cpp
上传用户:qdkongtiao
上传日期:2022-06-29
资源大小:356k
文件大小:4k
源码类别:

书籍源码

开发平台:

Visual C++

  1. /*
  2.  * This file contains code from "C++ Primer, Fourth Edition", by Stanley B.
  3.  * Lippman, Jose Lajoie, and Barbara E. Moo, and is covered under the
  4.  * copyright and warranty notices given in that book:
  5.  * 
  6.  * "Copyright (c) 2005 by Objectwrite, Inc., Jose Lajoie, and Barbara E. Moo."
  7.  * 
  8.  * 
  9.  * "The authors and publisher have taken care in the preparation of this book,
  10.  * but make no expressed or implied warranty of any kind and assume no
  11.  * responsibility for errors or omissions. No liability is assumed for
  12.  * incidental or consequential damages in connection with or arising out of the
  13.  * use of the information or programs contained herein."
  14.  * 
  15.  * Permission is granted for this code to be used for educational purposes in
  16.  * association with the book, given proper citation if and when posted or
  17.  * reproduced.Any commercial use of this code requires the explicit written
  18.  * permission of the publisher, Addison-Wesley Professional, a division of
  19.  * Pearson Education, Inc. Send your request for permission, stating clearly
  20.  * what code you would like to use, and in what specific way, to the following
  21.  * address: 
  22.  * 
  23.  *  Pearson Education, Inc.
  24.  *  Rights and Contracts Department
  25.  *  75 Arlington Street, Suite 300
  26.  *  Boston, MA 02216
  27.  *  Fax: (617) 848-7047
  28. */ 
  29. #include <cstddef>
  30. #include <iostream>
  31. #include <string>
  32. using std::cout;
  33. using std::endl;
  34. using std::string;
  35. using std::size_t;
  36. #include <bitset>
  37. using std::bitset;
  38. int main() 
  39. {
  40.     bitset<32> bitvec; // 32 bits, all zero
  41.     bool is_set = bitvec.any();      // false, all bits are zero
  42.     bool is_not_set = bitvec.none(); // true, all bits are zero
  43.     cout << "bitvec: " << bitvec << endl;
  44.     size_t sz = bitvec.size();  // returns 32
  45.     size_t bits_set = bitvec.count();  // returns number of bits that are on
  46.     // assign 1 to even numbered bits
  47.     for (int index = 0; index != 32; index += 2)
  48.                 bitvec[index] = 1; 
  49.     // equivalent loop using set operation
  50.     for (int index = 0; index != 32; index += 2)
  51.                 bitvec.set(index); 
  52.     unsigned i;
  53.     cout << "bitvec: positions turned on:nt";
  54.     for (int index = 0; index != 32; ++index)
  55.              if (bitvec[index])
  56.                   cout << index << " ";
  57.     cout << endl;
  58.     // equivalent; turn off first bit
  59.     bitvec.reset(0);
  60.     bitvec[0] = 0;
  61.     bitvec.reset(); // set all the bits to 0.
  62.     bitvec.set();   // set all the bits to 1
  63.     bitvec.flip(0);   // reverses value of first bit
  64.     bitvec[0].flip(); // also reverses the first bit
  65.     bitvec.flip();    // reverses value of all bits
  66.     // leaves bitvec unchanged; yields a copy of bitvec with all the bits reversed
  67.     bitvec = ~bitvec;          
  68.     // bitvec1 is smaller than the initializer
  69.     bitset<16> bitvec1(0xffff);  // bits 0 ... 15 are set to 1
  70.     // bitvec2 same size as initializer
  71.     bitset<32> bitvec2(0xffff);  // bits 0 ... 15 are set to 1; 16 ... 31 are 0
  72.     // on a 32-bit machine, bits 0 to 31 initialized from 0xffff
  73.     bitset<128> bitvec3(0xffff); // bits 32 through 127 initialized to zero
  74.     cout << "bitvec1: " << bitvec1 << endl;
  75.     cout << "bitvec2: " << bitvec2 << endl;
  76.     cout << "bitvec2[0] " << bitvec2[0] << endl;
  77.     cout << "bitvec2[31] " << bitvec2[31] << endl;
  78.     cout << "bitvec3: " << bitvec3 << endl;
  79.     string strval("1100");
  80.     bitset<32> bitvec4(strval);
  81.     cout << "strval: " << strval << endl;
  82.     cout << "bitvec4: " << bitvec4 << endl;
  83. {
  84.     string str("1111111000000011001101");
  85.     bitset<32> bitvec5(str, 5, 4); // 4 bits starting at str[5], 1100
  86.     bitset<32> bitvec6(str, str.size() - 4); // use last 4 characters 
  87.     cout << "str: " << str << endl;
  88.     cout << "bitvec5: " << bitvec5 << endl;
  89.     cout << "str: " << str << endl;
  90.     cout << "bitvec6: " << bitvec6 << endl;
  91. }
  92. {
  93.     unsigned long ulong = bitvec3.to_ulong();
  94.     cout << "ulong = " << ulong << endl;
  95. }
  96.     bitset<32> bitvec7 = bitvec2 & bitvec4;
  97.     cout << "bitvec7: " << bitvec7 << endl;
  98.     bitset<32> bitvec8 = bitvec2 | bitvec4;
  99.     cout << "bitvec8: " << bitvec8 << endl;
  100.     cout << "bitvec2: " << bitvec2 << endl;
  101.     return 0;
  102. }