1 二进制数的按位旋转
二进制数的按位旋转(翻转)是编程中常见的按位运算方法。
二进制数的按位旋转分为左转、右转。
左转意味着数据变大,右转意味着数据变小(有损)。
2 源程序
using System;
using System.Text;
using System.Collections;
using System.Collections.Generic;
namespace Legalsoft.Truffer.Algorithm
{
public static partial class Algorithm_Gallery
{
public static int Left_Rotate(int n, int d, int INT_BITS = 32)
{
return (n << d) | (n >> (INT_BITS - d));
}
public static int Right_Rotate(int n, int d, int INT_BITS = 32)
{
return (n >> d) | (n << (INT_BITS - d));
}
}
}
文章来源:https://www.toymoban.com/news/detail-825861.html
POWER BY TRUFFER.CN
BY 315SOFT.COM文章来源地址https://www.toymoban.com/news/detail-825861.html
3 代码格式
using System;
using System.Text;
using System.Collections;
using System.Collections.Generic;
namespace Legalsoft.Truffer.Algorithm
{
public static partial class Algorithm_Gallery
{
public static int Left_Rotate(int n, int d, int INT_BITS = 32)
{
return (n << d) | (n >> (INT_BITS - d));
}
public static int Right_Rotate(int n, int d, int INT_BITS = 32)
{
return (n >> d) | (n << (INT_BITS - d));
}
}
}
到了这里,关于C#,二进制数的按位旋转(Bits Rotate)算法与源代码的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!