Процентное соотношение совпадений двух текстов - C#

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

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

Есть два текста без пробелов. Как их сравнить и написать процентное соотношение совпадений? Помогите, пожалуйста. В С++ написал бы, а в c# не разбираюсь((. Не могу написать код для пятой кнопки.
Листинг программы
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Threading.Tasks;
  9. using System.Windows.Forms;
  10. namespace WindowsFormsApplication1
  11. {
  12. public partial class Form1 : Form
  13. {
  14. public Form1()
  15. {
  16. InitializeComponent();
  17. }
  18. private void button1_Click(object sender, EventArgs e)
  19. {
  20. // Create an OpenFileDialog object.
  21. OpenFileDialog openFile1 = new OpenFileDialog();
  22. // Initialize the filter to look for text files.
  23. openFile1.Filter = "Text Files|*.txt";
  24. // If the user selected a file, load its contents into the RichTextBox.
  25. if (openFile1.ShowDialog() == System.Windows.Forms.DialogResult.OK)
  26. richTextBox1.LoadFile(openFile1.FileName, RichTextBoxStreamType.PlainText);//открыть текстовый файл.
  27. }
  28. private void textBox1_TextChanged(object sender, EventArgs e)
  29. {
  30. }
  31. private void button2_Click(object sender, EventArgs e)
  32. {
  33. // Create an OpenFileDialog object.
  34. OpenFileDialog openFile2 = new OpenFileDialog();
  35. // Initialize the filter to look for text files.
  36. openFile2.Filter = "Text Files|*.txt";
  37. // If the user selected a file, load its contents into the RichTextBox.
  38. if (openFile2.ShowDialog() == System.Windows.Forms.DialogResult.OK)
  39. richTextBox2.LoadFile(openFile2.FileName, RichTextBoxStreamType.PlainText);
  40. }
  41. private void button3_Click(object sender, EventArgs e)
  42. {
  43. string Polinom = this.richTextBox1.Text;
  44. string N = this.richTextBox1.Text;
  45. string text = richTextBox1.Text;// Вписать текст
  46. text = text.Replace(" ", string.Empty);
  47. N = N.Replace(" ", string.Empty);
  48. richTextBox1.Text = N;
  49. }
  50. private void button4_Click(object sender, EventArgs e)
  51. {
  52. string Polinom = this.richTextBox2.Text;
  53. string M = this.richTextBox2.Text;
  54. string text = richTextBox2.Text;// Вписать текст
  55. text = text.Replace(" ", string.Empty);
  56. M = M.Replace(" ", string.Empty);
  57. richTextBox2.Text = M;
  58. }
  59. private void button5_Click(object sender, EventArgs e)
  60. {
  61.  
  62. }

Решение задачи: «Процентное соотношение совпадений двух текстов»

textual
Листинг программы
  1. private void button5_Click(object sender, EventArgs e) {
  2. var text1 = richTextBox1.Text;
  3. var text2 = richTextBox2.Text;
  4. var diffCount = 0;
  5. var minLength = Math.Min(text1.Length, text2.Length);
  6. for (var i = 0; i < minLength; i++) {
  7.     if (text1[i] == text2[i]) continue;
  8.     diffCount++;
  9. }
  10. var sovpadPercent = (minLength - diffCount / Math.Max(text1.Length, text2.Length)) * 100;
  11. MessageBox.Show("Процент совпадений: " + sovpadPercent);
  12. }

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


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

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

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

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

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

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