没有绑定检查的C#byte []比较

前端之家收集整理的这篇文章主要介绍了没有绑定检查的C#byte []比较前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在寻找性能有效的方法来比较两个字节[]的相等性.大小超过1 MB,因此应尽量减少每个数组元素的开销.

对于两个阵列,我的目标是在avoiding the repetitive bound checks之前击败SequenceEqualhand-coded for-loop over every item的速度.就像Array.Copy可以导致快速memcpy一样,什么会导致memcmp?

解决方法

如果性能真的很重要,那么最快的方法是使用每个Windows版本附带的CRT库.这个代码在我的poky笔记本电脑上需要大约51毫秒,也适用于64位机器:
using System;
using System.Runtime.InteropServices;
using System.Diagnostics;

class Program {
  static void Main(string[] args) {
    byte[] arr1 = new byte[50 * 1024 * 1024];
    byte[] arr2 = new byte[50 * 1024 * 1024];
    var sw = Stopwatch.StartNew();
    bool equal = memcmp(arr1,arr2,arr1.Length) == 0;
    sw.Stop();
    Console.WriteLine(sw.ElapsedMilliseconds);
    Console.ReadLine();
  }
  [DllImport("msvcrt.dll")]
  private static extern int memcmp(byte[] arr1,byte[] arr2,int cnt);
}
原文链接:https://www.f2er.com/c/117876.html

猜你在找的C&C++相关文章