我不太了解这个Markov ...它需要两个单词作为前缀,后缀保存其中的一个列表,并随机生成一个单词?
/* Copyright (C) 1999 Lucent Technologies */
/* Excerpted from 'The Practice of Programming' */
/* by Brian W. Kernighan and Rob Pike */
#include <time.h>
#include <iostream>
#include <string>
#include <deque>
#include <map>
#include <vector>
using namespace std;
const int NPREF = 2;
const char NONWORD[] = "\n"; // cannot appear as real line: we remove newlines
const int MAXGEN = 10000; // maximum words generated
typedef deque<string> Prefix;
map<Prefix, vector<string> > statetab; // prefix -> suffixes
void build(Prefix&, istream&);
void generate(int nwords);
void add(Prefix&, const string&);
// markov main: markov-chain random text generation
int main(void)
{
int nwords = MAXGEN;
Prefix prefix; // current input prefix
srand(time(NULL));
for (int i = 0; i < NPREF; i++)
add(prefix, NONWORD);
build(prefix, cin);
add(prefix, NONWORD);
generate(nwords);
return 0;
}
// build: read input words, build state table
void build(Prefix& prefix, istream& in)
{
string buf;
while (in >> buf)
add(prefix, buf);
}
// add: add word to suffix deque, update prefix
void add(Prefix& prefix, const string& s)
{
if (prefix.size() == NPREF) {
statetab[prefix].push_back(s);
prefix.pop_front();
}
prefix.push_back(s);
}
// generate: produce output, one word per line
void generate(int nwords)
{
Prefix prefix;
int i;
for (i = 0; i < NPREF; i++)
add(prefix, NONWORD);
for (i = 0; i < nwords; i++) {
vector<string>& suf = statetab[prefix];
const string& w = suf[rand() % suf.size()];
if (w == NONWORD)
break;
cout << w << "\n";
prefix.pop_front(); // advance
prefix.push_back(w);
}
}
最佳答案
根据维基百科,马尔可夫链是一个随机过程,其中下一个状态取决于前一个状态。这有点难以理解,所以我将尝试更好地解释一下:
您正在查看的似乎是一个生成基于文本的马尔可夫链的程序。本质上,该算法如下:
例如,如果您看一下此解决方案的第一句话,则可以得出以下频率表:
According: to(100%)
to: Wikipedia(100%)
Wikipedia: ,(100%)
a: Markov(50%), random(50%)
Markov: Chain(100%)
Chain: is(100%)
is: a(33%), dependent(33%), ...(33%)
random: process(100%)
process: with(100%)
.
.
.
better: :(100%)
本质上,从一个状态到另一状态的状态转换是基于概率的。在基于文本的马尔可夫链的情况下,过渡概率基于所选单词后的单词频率。因此,所选单词代表先前状态,而频率表或单词代表(可能)连续状态。如果知道先前的状态,则可以找到连续的状态(这是获得正确的频率表的唯一方法),因此这符合连续状态依赖于先前状态的定义。
Shameless Plug -不久前,我在Perl中编写了一个程序来做到这一点。您可以阅读有关here的信息。