2

给定一个分布在链表中的句子,其中链表中的每个项目都是一个单词,例如:

你好 -> 每个人 -> 如何 -> 是 -> 你 -> 感觉 -> |

鉴于此列表已排序,例如:

是 -> 每个人 -> 感觉 -> 你好 -> 如何 -> 你 -> |

你将如何编写递归来找到句子中出现最多的首字母(在本例中是来自 Hello & How 的字母 H)?

4

5 回答 5

1

编辑:我已将代码更新为递归版本。

为了运行它,您调用

GetMostLetterRecursion(rootNode , '0', 0, '0', 0)

代码本身如下所示:

public char GetMostLetterRecursion(LinkedListNode<String> node, char currentChar, int currentCount, char maxChar, int maxCount)
{
    if (node == null) return maxChar;

    char c = node.Value[0];
    if (c == currentChar)
    {
        return GetMostLetterRecursion(node.Next, currentChar, currentCount++, maxChar, maxCount);
    }

    if(currentCount > maxCount)
    {
        return GetMostLetterRecursion(node.Next, c, 1, currentChar, currentCount);
    }

    return GetMostLetterRecursion(node.Next, c, 1, maxChar, maxCount);
}
于 2013-05-27T18:27:23.500 回答
1

解决方案 1

循环遍历单词,记录每个字母开头的单词数。根据计数返回最受欢迎的字母(如果您使用优先级队列进行计数,则很容易)。

这需要 O(n) 时间(单词数)和 O(26) 内存(字母表中的字母数)。

解决方案 2

按字母顺序对单词进行排序。循环单词。记录当前字母及其频率,以及迄今为止最流行的字母及其频率。在循环结束时,这是整个列表中最受欢迎的字母。

这需要 O(n log n) 时间和 O(1) 内存。

于 2013-05-27T19:22:06.763 回答
0

保留一个数组来存储出现次数,并遍历链表一次进行计数。最后循环遍历数组以找到最高的一个。

C中的粗略草图:

int count[26]={0};

While ( head->next != NULL)
{
  count[head->word[0] - 'A']++; // Assuming 'word' is string in each node
  head = head->next;
}

max = count[0];
for (i=0;i<26;i++)
{
  if(max<a[i])
    max = a[i];
}

您可以修改它以使用递归并处理小写字母。

于 2013-05-27T18:16:08.000 回答
0

这是 Python 中的纯递归实现。我没有测试过它,但它应该可以工作模数拼写错误或语法错误。我使用字典来存储计数,因此它也适用于 Unicode 单词。该问题分为两个功能:一个用于计算每个字母的出现次数,另一个用于递归查找最大值。

# returns a dictionary where dict[letter] contains the count of letter
def count_first_letters(words):

    def count_first_letters_rec(words, count_so_far):

        if len(words) == 0:
            return count_so_far

        first_letter = words[0][0]

        # could use defaultdict but this is an exercise :)
        try:
            count_so_far[first_letter] += 1
        except KeyError:
            count_so_far[first_letter] = 1

        # recursive call
        return count_first_letters_rec(words[1:], count_so_far)

    return count_first_letters(words, {})


# takes a list of (item, count) pairs and returns the item with largest count.
def argmax(item_count_pairs):

    def argmax_rec(item_count_pairs, max_so_far, argmax_so_far):

        if len(item_count_pairs) == 0:
            return argmax_so_far

        item, count = item_count_pairs[0]

        if count > max_so_far:
            max_so_far = count
            argmax_so_far = item

        # recursive call
        return argmax_rec(item_count_pairs[1:], max_so_far, argmax_so_far)

    return argmax_rec(item_count_pairs, 0, None)


def most_common_first_letter(words);

    counts = count_first_letters(words)

    # this returns a dictionary, but we need to convert to
    # a list of (key, value) tuples because recursively iterating
    # over a dictionary is not so easy

    kvpairs = counts.items()
    # counts.iteritems() for Python 2

    return argmax(kvpairs)
于 2013-05-27T19:07:13.883 回答
0

我有一个长度为 26 的数组(作为英文字母,所以索引 1 用于 'a' 和 2 用于 'b' 等等。)。每次出现一个字母时,我都会增加它在数组中的值。如果该值超过最大数量,那么我更新最大值并将该字母作为最常出现的字母。然后我调用下一个节点的方法。

这是Java中的代码:

import java.util.LinkedList;


public class MostOccurance {
    char mostOccured;
    int maxOccurance;
    LinkedList<String> list= new LinkedList<String>();
    int[] letters= new int[26];


 public void start(){
     findMostOccuredChar( 0, '0', 0);
 }

 public char findMostOccuredChar ( int node, char most, int max){
     if(node>=list.size())
         return most;
     String string=list.get(node);
     if (string.charAt(0)== most)
         {max++;
         letters[Character.getNumericValue(most)-10]++; 
         }
     else{
         letters[Character.getNumericValue(most)-10]++;
         if (letters[Character.getNumericValue(most)-10]++>max){
             max=letters[Character.getNumericValue(most)-10];
             most=string.charAt(0);
         }
     }
     findMostOccuredChar( node++, most, max);

     return most;
      }


  }

当然,您必须将每个单词添加到您的链接列表中。我没有这样做,因为我只是在展示一个例子。

于 2013-05-27T19:40:57.110 回答