是否需要并行处理?
答案 0 :(得分:2)
使用Stopwatch
类运行一个算法,然后运行另一个算法。
Stopwatch stopWatch = new Stopwatch();
stopWatch.Start();
// Code for your algorithm
stopWatch.Stop();
// Get the elapsed time as a TimeSpan value.
TimeSpan ts = stopWatch.Elapsed;
// Format and display the TimeSpan value.
string elapsedTime = String.Format("{0:00}:{1:00}:{2:00}.{3:00}",
ts.Hours, ts.Minutes, ts.Seconds,
ts.Milliseconds / 10);
确保使用多种大小的输入测试算法。在小集合上执行速度比其他算法快的排序算法可能不一定在更大的集合上执行得更快。