1

我为 CRC16 找到了这个 C# 代码,但我在 F# 上需要它:

使用系统;

public class Crc16 {
    const ushort polynomial = 0xA001;
    ushort[] table = new ushort[256];

    public ushort ComputeChecksum(byte[] bytes) {
        ushort crc = 0;
        for(int i = 0; i < bytes.Length; ++i) {
            byte index = (byte)(crc ^ bytes[i]);
            crc = (ushort)((crc >> 8) ^ table[index]);
        }
        return crc;
    }

    public byte[] ComputeChecksumBytes(byte[] bytes) {
        ushort crc = ComputeChecksum(bytes);
        return BitConverter.GetBytes(crc);
    }

    public Crc16() {
        ushort value;
        ushort temp;
        for(ushort i = 0; i < table.Length; ++i) {
            value = 0;
            temp = i;
            for(byte j = 0; j < 8; ++j) {
                if(((value ^ temp) & 0x0001) != 0) {
                    value = (ushort)((value >> 1) ^ polynomial);
                }else {
                    value >>= 1;
                }
                temp >>= 1;
            }
            table[i] = value;
        }
    }
}

这是我开始的地方:

let ComputeChecksum(bytes : byte array) =
    let mutable crc = 0us
    for i = 0 to bytes.Length do
        let index = (crc ^^^ bytes.[i]) // ? uint16 and byte

所以我认为 C# 版本在这里占用了第一个或第二个字节。所以我想知道 C# '^' 将如何在这里工作?以及如何将这行 C# 代码转换为 F# ?

4

2 回答 2

3

这将计算与 C# 代码相同的结果。

type Crc16() =
  let polynomial = 0xA001us
  let table = Array.init 256 (fun i ->
    ((0us, uint16 i), [0y..7y]) 
    ||> Seq.fold (fun (value, temp) j ->
      let newValue = 
        match (value ^^^ temp) &&& 0x0001us with
        | 0us -> value >>> 1
        | _ -> ((value >>> 1) ^^^ polynomial)
      newValue, temp >>> 1)
    |> fst)
  member __.ComputeChecksum(bytes:byte[]) =
    (0us, bytes) ||> Seq.fold (fun crc byt ->
      let index = byte (crc ^^^ (uint16 byt))
      (crc >>> 8) ^^^ table.[int index])
于 2011-09-12T14:15:59.897 回答
1

C#^和 F#^^^都是 XOR 运算符。他们应该工作相同。你问的是这个吗?

于 2011-09-12T06:18:44.003 回答