Advertisement
Sephinroth

example

Dec 1st, 2019
308
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 2.17 KB | None | 0 0
  1. // Исходная строка – 10000 символов из романа «Война и мир», искомая строка: а) «князь» б) «императрица»
  2.  
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using System.Text;
  7. using System.IO;
  8.  
  9. namespace ConsoleApplication2
  10. {
  11.     class Program
  12.     {
  13.         static void Main(string[] args)
  14.         {
  15.             StreamReader input = new StreamReader("e:/practice/input.txt", Encoding.GetEncoding(1251));
  16.             string text = input.ReadToEnd();
  17.             input.Close();
  18.             Console.WriteLine("Введите искомое слово: ");
  19.             string s = Console.ReadLine();
  20.             const long P = 37;
  21.             long[] arr = new long[text.Length];
  22.             arr[0] = 1;
  23.             for (int i = 1; i < text.Length; i++)
  24.             {
  25.                 arr[i] = arr[i-1] * P ;
  26.             }
  27.             long[] h_arr = new long[text.Length];
  28.             for (int i = 0; i < text.Length; i++)
  29.             {
  30.                 h_arr[i] = (text[i] -'а' + 1) * arr[i]; //1
  31.                 if(i > 0)
  32.                     h_arr[i] += h_arr[i-1];
  33.             }
  34.             long h_s = 0;
  35.             for (int i = 0; i < s.Length; i++)
  36.             {
  37.                 h_s += (s[i] -'a' + 1) * arr[i];
  38.             }//проводим поиск по хеш-значениям
  39.             StreamWriter output = new StreamWriter("e:/practice/output.txt", true);
  40.             for (int i = 0; i + s.Length - 1 < text.Length; i++)
  41.             {
  42.             // находим хэш-значение подстроки T начиная с позиции i длиною s.Length
  43.                 long cur_h = h_arr[i + s.Length - 1];
  44.                 if (i > 0)
  45.                 {
  46.                     cur_h -= h_arr[i -1];
  47.                 }//приводим хэш-значения двух подстрок к одной степени
  48.                 if (cur_h == h_s * arr[i]) // если хеш-значения равны, то и подстроки равны
  49.                 {
  50.                     output.WriteLine("Слово {0} найдено на {1}", s, i); // выводим позицию i, с которой начинается повторение
  51.                 }
  52.             }
  53.            
  54.            
  55.     }
  56. }
  57. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement