list.BinarySearch()

作者:追风剑情 发布于:2023-10-26 16:27 分类:C#

BinarySearch() 用于对已排序的列表进行搜索,如果找到相等的元素,则返回从零开始的索引号,如果找不到,则返回一个负数,该负数是下一个元素的索引的按位补码。

  1. using System;
  2. using System.Collections.Generic;
  3.  
  4. namespace ConsoleApp4
  5. {
  6. class Program
  7. {
  8. static void Main(string[] args)
  9. {
  10. List<int> list = new List<int>();
  11. list.Add(3);
  12. list.Add(1);
  13. list.Add(5);
  14.  
  15. Console.WriteLine("排序前");
  16. Print(list);
  17.  
  18. list.Sort();
  19. Console.WriteLine("排序后");
  20. Print(list);
  21.  
  22. //二叉搜索,寻找合适的插入位置
  23. int idx = list.BinarySearch(2);
  24. //如果找不到,则将返回一个负数,该负数是下一个元素的索引的按位补码
  25. if (idx < 0) idx = ~idx;
  26. Console.WriteLine("应在list[{0}]插入{1}", idx, 2);
  27. list.Insert(idx, 2);
  28. Print(list);
  29.  
  30. Console.ReadKey();
  31. }
  32.  
  33. public static void Print(List<int> list)
  34. {
  35. list.ForEach(x => Console.Write(x + " "));
  36. Console.WriteLine();
  37. }
  38. }
  39. }

运行测试
1111.png

标签: C#

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号