public MainWindow() { InitializeComponent(); Languege.Libra("ru"); SeriesCollection = new SeriesCollection(); SeriesCollection2 = new SeriesCollection(); }
static void Main(string[] args) { Languege.Libra("ru"); var crt = new ChineseRemainderTheorem(); var el3 = new TheLinearCongruentialMethod(); var el11 = new TheLinearCongruentialMethod(); el3.CreatePeriod(3, 1); el11.CreatePeriod(11, 4); crt.CreatePeriod(el3.Period, el11.Period); foreach (var e in el3.Period) { Console.Write($"{e} "); } Console.WriteLine(); foreach (var e in el11.Period) { Console.Write($"{e} "); } Console.WriteLine(); foreach (var e in crt.Period) { Console.Write($"{e} "); } Console.ReadKey(); //var candidat = new List<string>(); //candidat.Add("собакц"); //candidat.Add("сингапцр"); //var ans = Bodymethod(@"Russian.dic", @"Russian.aff", -1, candidat); //foreach (var a in ans) // Console.WriteLine(a); //Console.ReadKey(); }
static void Main() { Languege.Libra("ru"); #region FileStream fs = new FileStream("hillNewUpdateDatabase.txt", FileMode.OpenOrCreate); StreamWriter hillBase = new StreamWriter(fs, Encoding.Default); //Random rnd = new Random(); #endregion #region var lcm3 = new TheLinearCongruentialMethod(); var lcm11 = new TheLinearCongruentialMethod(); var china = new ChineseRemainderTheorem(); Random rnd = new Random(); while (true) { var text = Console.ReadLine(); if (text == "end") { break; } var staticKey = Generate.CreateKeysMatrix(text.Length); var libra = new WordAndKey <List <Matrix <double> > >(text, staticKey); var tr = new Hill(); lcm11.CreatePeriod(11, rnd.Next(0, 11)); lcm3.CreatePeriod(3, rnd.Next(0, 3)); china.CreatePeriod(lcm3.Period, lcm11.Period); tr.Code(libra, china.Period); hillBase.WriteLine(string.Join(" ", lcm3.Period)); hillBase.WriteLine(string.Join(" ", lcm11.Period)); hillBase.WriteLine(libra.Word); hillBase.WriteLine(libra.Encoded); foreach (var l in libra.Key) { hillBase.WriteLine(l.ToMatrixString()); } } hillBase.Close(); #endregion // #region //key.Add(Matrix<double>.Build.DenseOfArray(new double[,] { { 7, 2 }, { 29, 29 } })); //key.Add(Matrix<double>.Build.DenseOfArray(new double[,] { { 15 }, { 6 } })); //var libra = new WordAndKey<List<Matrix<double>>>("БУБЛИКИ", key); //var tr = new Hill(); //tr.Code(libra); //Console.WriteLine(libra.Encoded); #endregion }
/// <summary> /// Переключение языков /// </summary> /// <param name="sender"></param> /// <param name="e"></param> private void RadioButton_Checked(object sender, RoutedEventArgs e) { RadioButton pressed = (RadioButton)sender; Languege.Libra(pressed.Name); }