Бинарный поиск по массиву не корректно работает - C#

Узнай цену своей работы

Формулировка задачи:

Почему мой бинарный поиск массива не корректно работает?
Листинг программы
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using System.IO;
  7. namespace Project11
  8. {
  9. struct Bus
  10. {
  11. public int N;
  12. public string Pn;
  13. public double Vo;
  14. public double Vp;
  15. public Bus(int n, string pn, double vo, double vp)
  16. {
  17. this.N = n;
  18. this.Pn = pn;
  19. this.Vo = vo;
  20. this.Vp = vp;
  21. }
  22. public void Show()
  23. {
  24. Console.WriteLine("№ рейса " + this.N);
  25. Console.WriteLine("Пункт назначения: " + this.Pn);
  26. Console.WriteLine("Время отправления: " + this.Vo);
  27. Console.WriteLine("Время прибытия : " + this.Vp);
  28. }
  29. public void Write()
  30. {
  31. string fileName = "bus.txt";
  32. FileStream aFile = new FileStream(fileName, FileMode.OpenOrCreate);
  33. StreamWriter sw = new StreamWriter(aFile);
  34. aFile.Seek(0, SeekOrigin.End);
  35. sw.WriteLine("№ рейса " + this.N);
  36. sw.WriteLine("Пункт назначения: " + this.Pn);
  37. sw.WriteLine("Время отправления: " + this.Vo);
  38. sw.WriteLine("Время прибытия : " + this.Vp);
  39. sw.WriteLine();
  40. sw.Close();
  41. Console.WriteLine();
  42. Console.WriteLine("Данные записаны в файл");
  43. }
  44.  
  45. }
  46. class PR11
  47. {
  48. public static void Main()
  49. {
  50. string pnb;
  51. double qvp = 8.15;
  52. int k = 4;
  53. Bus[] bus = new Bus[k];
  54. bus[0] = new Bus(122, "Paris", 14.00, 14.50);
  55. bus[1] = new Bus(12, "Vena", 16.00, 17.35);
  56. bus[2] = new Bus(121, "Roma", 7.20, 8.15);
  57. bus[3] = new Bus(356, "London", 13.00, 17.30);
  58. bus[3] = new Bus(356, "Praha", 10.00, 21.30);
  59. Console.Read();
  60. Console.Read();
  61. Console.WriteLine("Сортировка по времени прибытия......");
  62. Bus tmp = new Bus();
  63. for (int i = 0; i < bus.Length; i++)
  64. {
  65. for (int j = i + 1; j < bus.Length; j++)
  66. {
  67. if (bus[i].Vp > bus[j].Vp) //По возростанию
  68. {
  69. tmp = bus[i];
  70. bus[i] = bus[j];
  71. bus[j] = tmp;
  72. }
  73. }
  74. }
  75. Console.WriteLine();
  76. Console.WriteLine("Поиск...");
  77. double xtime = 13.00;
  78. int z = 0;
  79. int g = k - 1;
  80. int m;
  81. while (z < g)
  82. {
  83. m = (z + g) / 2;
  84. if (xtime > bus[m].Vo)
  85. z = m + 1;
  86. else
  87. g = m;
  88. }
  89. if (bus[z].Vo == xtime)
  90. {
  91. bus[z].Show();
  92. Console.WriteLine("--------------------------");
  93. }
  94. else
  95. Console.WriteLine("такого рейса не существует");
  96. Console.WriteLine("--------------------------");
  97. Console.Read();
  98. Console.Read();
  99. }
  100.  
  101. }
  102. }

Решение задачи: «Бинарный поиск по массиву не корректно работает»

textual
Листинг программы
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using System.IO;
  7.  
  8. namespace Project11
  9. {
  10.     struct Bus
  11.     {
  12.         public int N;
  13.         public string Pn;
  14.         public double Vo;
  15.         public double Vp;
  16.         public Bus(int n, string pn, double vo, double vp)
  17.         {
  18.             this.N = n;
  19.             this.Pn = pn;
  20.             this.Vo = vo;
  21.             this.Vp = vp;
  22.  
  23.         }
  24.         public void Show()
  25.         {
  26.             Console.WriteLine("№ рейса " + this.N);
  27.             Console.WriteLine("Пункт назначения: " + this.Pn);
  28.             Console.WriteLine("Время отправления: " + this.Vo);
  29.             Console.WriteLine("Время прибытия : " + this.Vp);
  30.         }
  31.  
  32.         public void Write()
  33.         {
  34.             string fileName = "bus.txt";
  35.             FileStream aFile = new FileStream(fileName, FileMode.OpenOrCreate);
  36.             StreamWriter sw = new StreamWriter(aFile);
  37.             aFile.Seek(0, SeekOrigin.End);
  38.             sw.WriteLine("№ рейса " + this.N);
  39.             sw.WriteLine("Пункт назначения: " + this.Pn);
  40.             sw.WriteLine("Время отправления: " + this.Vo);
  41.             sw.WriteLine("Время прибытия : " + this.Vp);
  42.             sw.WriteLine();
  43.             sw.Close();
  44.             Console.WriteLine();
  45.             Console.WriteLine("Данные записаны в файл");
  46.         }
  47.  
  48.         public void Search(Bus[] arr, double _xtime, int k)
  49.         {
  50.             double xtime = _xtime;
  51.             int z = 0;
  52.             int g = k - 1;
  53.             int m;
  54.             while (z < g)
  55.             {
  56.                 m = (z + g) / 2;
  57.                 if (xtime > arr[m].Vo)
  58.                     z = m + 1;
  59.                 else
  60.                     g = m;
  61.             }
  62.             if (arr[z].Vo == xtime)
  63.             {
  64.                 arr[z].Show();
  65.                 Console.WriteLine("--------------------------");
  66.             }
  67.             else
  68.             {
  69.                 Console.WriteLine("такого рейса не существует");
  70.                 Console.WriteLine("--------------------------");
  71.             }
  72.         }
  73.  
  74.     }
  75.  
  76.    
  77.     class PR11
  78.     {
  79.         public static void Main()
  80.         {
  81.            
  82.             int k = 5;
  83.  
  84.             Bus[] bus = new Bus[k];
  85.             bus[0] = new Bus(122, "Paris", 14.00, 14.50);
  86.             bus[1] = new Bus(12, "Vena", 16.00, 17.35);
  87.             bus[2] = new Bus(121, "Roma", 7.20, 8.15);
  88.             bus[3] = new Bus(356, "London", 13.00, 17.30);
  89.             bus[4] = new Bus(356, "Praha", 10.00, 21.30);
  90.  
  91.             Console.Read();
  92.             Console.Read();
  93.  
  94.             Console.WriteLine("Сортировка по времени отправки......");
  95.  
  96.             Bus tmp = new Bus();
  97.             for (int i = 0; i < bus.Length; i++)
  98.             {
  99.                 for (int j = i + 1; j < bus.Length; j++)
  100.                 {
  101.                     if (bus[i].Vo > bus[j].Vo) //По возростанию
  102.                     {
  103.                         tmp = bus[i];
  104.                         bus[i] = bus[j];
  105.                         bus[j] = tmp;
  106.                     }
  107.                 }
  108.             }
  109.  
  110.             Console.WriteLine();
  111.  
  112.             Console.WriteLine("Поиск...");
  113.  
  114.             Bus.Search(bus[k],14.00,k);
  115.            
  116.             Console.Read();
  117.             Console.Read();
  118.         }
  119.  
  120.  
  121.  
  122.     }
  123. }

ИИ поможет Вам:


  • решить любую задачу по программированию
  • объяснить код
  • расставить комментарии в коде
  • и т.д
Попробуйте бесплатно

Оцени полезность:

12   голосов , оценка 4.333 из 5

Нужна аналогичная работа?

Оформи быстрый заказ и узнай стоимость

Бесплатно
Оформите заказ и авторы начнут откликаться уже через 10 минут
Похожие ответы