本文介绍了如何生成在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#马尔可夫链的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!