答:首先打开 Visual Studio2010,创建一个新的 Windows 窗体应用程序项目。在设计器中,将一个 TextBox 控件和一个 Button 控件添加到窗体上。TextBox 控件分别用于输入一个字符串,Button 控件用于触发检索出现重复的词汇。将这个 TextBox 控件命名为 txtSource,Button 控件命名为btnSearch。双击 Button 控件,在代码中生成按钮的 Click 事件处理程序。保存并运行程序。当用户可以在txtSource控件中输入所要检索的字符串,在btnSearch控件中完成检索。
具体代码如下:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace Form1
{
public partial class Form3 : Form
{
public Form3()
{
InitializeComponent();
}
private void btnSearch_Click(object sender, EventArgs e)
{
int n = 0; //记录出现重复的词汇的个数
string[] words = new string[10]; //保存出现重复的词汇
int[] times = new int[10]; //记录每一个重复的词汇的出现次数
//寻找第n个出现重复的词汇
for (int i = 0; i < txtSource.Text.Length - 2; i++)
{
bool isSame = false; //记录是否发生重复
string source = txtSource.Text.Substring(i, 2); //提取二字源词
int j = i + 2;
while (j < txtSource.Text.Length - 2)
{
string target = txtSource.Text.Substring(j, 2); //提取二字目标词
if (source == target)
{
times[n]++; //重复次数增加1
//如果是新出现的重复词汇,则保存
if (Array.IndexOf(words, target) == -1)
{
isSame = true;
words[n] = target;
}
}
j++;
}
if (isSame) n++; //出现重复的词汇的个数加1
}
lblShow.Text = String.Format("一共有{0}个重复的词汇!\n\n其中,", n);
for (int i = 0; i < 10; i++)
{
if (!String.IsNullOrEmpty(words[i]))
lblShow.Text += String.Format("“{0}”重复{1}次•", words[i], times[i] + 1);
}
}
}
}
运行效果图如下:
输入数据后进行检索的结果运行图如下: