本文介绍了如何在C#中生成马可夫链的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想在C#中创建这个马可夫链。我需要知道在这种情况下是否有其他可以更好的邻接关系的结构。另外如何使用现有的.Net集合类型来实现这一点。解决方案
是一个非常好的通用图形库。它有一些步行马可夫链的实现。我建议您查看源代码。
I want to create this Markov Chain in C#. I need to know if there is any other structure other than adjacency list which can work better in this situation. Also how can I use the existing .Net collection type to implement this.
解决方案
QuickGraph is really good general purpose graph library. It has some implementations for walking Markov Chains. I recommend checking out the source code.
这篇关于如何在C#中生成马可夫链的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!