奇偶校验

作者:追风剑情 发布于:2017-11-29 11:14 分类:Algorithms

示例: 判断二进制串的奇偶性

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. namespace Test6
  8. {
  9. class Program
  10. {
  11. static void Main(string[] args)
  12. {
  13. string b = "111101";
  14. int d = Convert.ToInt32(b, 2);
  15. Console.WriteLine("二进制 {0} 十进制 {1} 奇偶性 {2}", b, d, CheckParity(d));
  16.  
  17. b = "111001";
  18. d = Convert.ToInt32(b, 2);
  19. Console.WriteLine("二进制 {0} 十进制 {1} 奇偶性 {2}", b, d, CheckParity(d));
  20.  
  21. Console.Read();
  22. }
  23.  
  24. public static int CheckParity(int x)
  25. {
  26. /**
  27. 奇偶校验方法:
  28. 二进制串中的每一位从左到右依次异或,因为异或满足结合律,可以用下面方法进行计算。
  29. **/
  30. //相邻位异或
  31. int y;
  32. y = x ^ (x >> 1);
  33. y = y ^ (y >> 2);
  34. y = y ^ (y >> 4);
  35. y = y ^ (y >> 8);
  36. y = y ^ (y >> 16);
  37. y &= 1;//最后一位决定了奇偶性(1:奇 0:偶)
  38. //y的第几位的奇偶性决定了最左边到此位置二进制串的奇偶性
  39. //如: y&2 代表了左边31位的奇偶性
  40. //如: y&4 代表了左边30位的奇偶性
  41. return y;
  42. }
  43.  
  44. public static int CheckParity(byte x)
  45. {
  46. int y;
  47. y = x ^ (x >> 1);
  48. y = y ^ (y >> 2);
  49. y = y ^ (y >> 4);
  50. y &= 1;
  51. return y;
  52. }
  53. }
  54. }

运行测试

11111.png

标签: Algorithms

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号