Не могу реализовать алгоритм с FileStream - C#

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

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

Здравствуйте. Не могу реализовать алгоритм с помощью чтения из файла (FileStream). Помогите пожалуйста.
Листинг программы
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.IO;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace К
  8. {
  9. class Program
  10. {
  11. static void Main(string[] args)
  12. {
  13. string[] Slova= { "привет","пока","ок","вет" };//Слова которые нужно найти в строке
  14. string Stroka = "приветпока";//Строка
  15. List<int> Sostoyaniya = FindAllSostoyaniya(Stroka, Slova);
  16. int count = 3;
  17. foreach (var item in Sostoyaniya)
  18. {
  19. Console.WriteLine(" Слово " + Slova[count] + " начинается с " + item + " позиции. ");
  20. count--;
  21. }
  22. Console.ReadLine();
  23. }
  24. private const int Stroka = 20;
  25. private const int Alphavit = 32;
  26. private static int[] Out = new int[Stroka];
  27. private static int[] FF = new int[Stroka];
  28. private static int[,] GF = new int[Stroka, Alphavit];
  29. private static int Algoritm(string[] Words, char NizkiyChar = 'а', char NaibolshiyChar = 'я')
  30. {
  31. Out = Enumerable.Repeat(0, Out.Length).ToArray();
  32. FF = Enumerable.Repeat(-1, FF.Length).ToArray();
  33. for (int i = 0; i < Stroka; ++i)
  34. {
  35. for (int j = 0; j < Alphavit; ++j)
  36. {
  37. }
  38. }
  39. int Sostoyaniya = 1;
  40. for (int i = 0; i < Words.Length; ++i)
  41. {
  42. string KeyWord = Words[i];
  43. int StartSostoyanie = 0;
  44. for (int j = 0; j < KeyWord.Length; ++j)
  45. {
  46. int c = KeyWord[j] - NizkiyChar;
  47. if (GF[StartSostoyanie, c] == -1)
  48. {
  49. GF[StartSostoyanie, c] = Sostoyaniya++;
  50. }
  51. StartSostoyanie = GF[StartSostoyanie, c];
  52. }
  53. Out[StartSostoyanie] |= (1 << i);
  54. }
  55. for (int c = 0; c < Alphavit; c++)
  56. {
  57. if (GF[0, c] == -1)
  58. {
  59. GF[0, c] = 0;
  60. }
  61. }
  62. List<int> q = new List<int>();
  63. for (int c = 0; c <= NaibolshiyChar - NizkiyChar; ++c)
  64. {
  65. if (GF[0, c] != -1 && GF[0, c] != 0)
  66. {
  67. FF[GF[0, c]] = 0;
  68. q.Add(GF[0, c]);
  69. }
  70. }
  71. while (Convert.ToBoolean(q.Count))
  72. {
  73. int Sostoyanie = q[0];
  74. q.RemoveAt(0);
  75. for (int c = 0; c <= NaibolshiyChar - NizkiyChar; ++c)
  76. {
  77. if (GF[Sostoyanie, c] != -1)
  78. {
  79. int Otkaz = FF[Sostoyanie];
  80. while (GF[Otkaz, c] == -1)
  81. {
  82. Otkaz = FF[Otkaz];
  83. }
  84. Otkaz = GF[Otkaz, c];
  85. FF[GF[Sostoyanie, c]] = Otkaz;
  86. Out[GF[Sostoyanie, c]] |= Out[Otkaz];
  87. q.Add(GF[Sostoyanie, c]);
  88. }
  89. }
  90. }
  91. return Sostoyaniya;
  92. }
  93. private static int FindNextSostoyaniya(int StartSostoyanie, char NextVvod, char NizkiyChar = 'а')
  94. {
  95. int Otvet = StartSostoyanie;
  96. int c = NextVvod - NizkiyChar;
  97. while (GF[Otvet, c] == -1)
  98. {
  99. Otvet = FF[Otvet];
  100. }
  101. return GF[Otvet, c];
  102. }
  103. public static List<int> FindAllSostoyaniya(string Text, string[] KeyWord, char NizkiyChar = 'а', char NaibolshiyChar = 'я')
  104. {
  105. Algoritm(KeyWord, NizkiyChar, NaibolshiyChar);
  106. int StartSostoyanie = 0;
  107. List<int> Value = new List<int>();
  108. for (int i = 0; i < Text.Length; ++i)
  109. {
  110. StartSostoyanie = FindNextSostoyaniya(StartSostoyanie, Text[i], NizkiyChar);
  111. if (Out[StartSostoyanie] == 0)
  112. continue;
  113. for (int j = 0; j < KeyWord.Length;j++)
  114. {
  115. if (Convert.ToBoolean(Out[StartSostoyanie] & (1 << j)))
  116. {
  117. Value.Insert(0, i - KeyWord[j].Length + 1);
  118. }
  119. }
  120. }
  121. return Value;
  122. }
  123. }
  124. }

Решение задачи: «Не могу реализовать алгоритм с FileStream»

textual
Листинг программы
  1. NaibolshiyChar - NizkiyChar

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


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

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

6   голосов , оценка 3.833 из 5

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

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

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