-6
public class Word
{
    private string _inputWord;
    public Word()
    {
        Console.WriteLine("Enter a word");
        _inputWord = Console.ReadLine();

    }

    public void sortandcount()
    {
        char[] test = _inputWord.ToCharArray();
        char temp;
        int count = 0, tcount = 0;
        Array.Sort(test);
        int length = test.Length;
        temp = test[0];

        while (length > 0)
            {
                for (int i = 0; i < test.Length; i++)
                {
                    if (temp == test[i])
                    {
                        count++;
                    }
                }
                Console.WriteLine(temp + " " + count);
                tcount = tcount + count;
                temp = test[tcount]; //this line 
                length = length - count;
                count = 0;
            }
        }



    }

    class Program
    {
        public static void Main() //this line 
        {
        Word obj = new Word();
obj.sortandcount();
        }
    }

我在两行出现异常,我在该行上表示为注释(如//程序中的这一行),你们能帮我清除一下吗?该程序的 M 想法是计算给定单词中的字符数(相同)。例如 Apple a-1 p-2 l-1 e-1

4

4 回答 4

2

当您计算完所有字母后tcount == test.length,这意味着test[tcount]它将索引一个元素到 0 远。

给定任何数组 arr 然后arr[arr.length]将始终超出范围,因为 arr 是零索引的。在 temp = test[tcount] 之前,您需要确保tcount < test.length您的逻辑也有错误

尝试使用obo它会打印的单词o 2 o 2

计算单词中字符的简单实现(如果顺序不必与单词中出现的相同)将是

var result = test.Aggregate(new Dictionary<char,int>(), (state,c)=>{
                if(!state.ContainsKey(c)) { state.Add(c,0); }
                state[c] += 1;
                return state;
             });

foreach(var pair in result) { Console.WriteLine(pair.Key + " " + key.Value); }

编辑如果您需要它们以与它们在单词中出现的顺序相同的顺序进行排序,然后将 foreach 更改为此

foreach(var pair in result.OrderBy(p=>test.IndexOf(p.Key))) {
   Console.WriteLine(pair.Key + " " + key.Value);
}
于 2013-10-11T07:04:52.300 回答
0

该代码包含一个错误

 int length = test.Length; // This is not zero based

并且 count 从零开始,您的循环将进行一次额外的迭代,导致

 temp = test[tcount]

失败,因为 tcount 现在变得比 test 的长度大 1 个字符。

最好的办法是

int length = test.Length -1;

请让我知道这是否有帮助:)祝你有美好的一天

于 2013-10-11T07:12:33.277 回答
0

更多“程序化”版本:

public class Word
{
    private string _inputWord;
    public Word()
    {
        Console.WriteLine("Enter a word");
        _inputWord = Console.ReadLine();
    }

    public void SortAndCount()
    {
        // sort
        char[] array = _inputWord.ToCharArray();
        Array.Sort(array);
        // for all characters
        for(int i = 0; i < array.Length; i++)
        {
            // duplicate check
            if(i > 0 && array[i] == array[i - 1])
                continue;
            // count
            int count = 0;
            for(int j = 0; j < array.Length; j++)
                if(array[i] == array[j])
                    count++;
            Console.WriteLine(array[i] + " " + count);
        }
   }
}

class Program
{
    public static void Main()
    {
        Word obj = new Word();
        obj.SortAndCount();
    }
}
于 2013-10-11T07:18:01.980 回答
0

如果要输出单词中的字母数,请尝试以下代码:

var testString = "APPLE";

testString.ToCharArray()
.OrderBy(i => i).ToLookup(i => i)
.Select(i => new { letter = i.Key, count = i.Count() }).ToList()
.ForEach(i => Console.WriteLine("letter {0}, count {1}", i.letter, i.count));

这更干净,更不容易出错。

于 2013-10-11T07:28:33.820 回答