How to generate Markov Chain in C#
Asked Answered
U

1

10

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.

enter image description here

Unmeaning answered 6/5, 2010 at 14:38 Comment(1)
If you're interested in doing this yourself in C#, you should take a look at informit.com/guides/content.aspx?g=dotnet&seqNum=745 and the two articles that follow it. They show how to build Markov models in C#.Anacardiaceous
H
4

QuickGraph is really good general purpose graph library. It has some implementations for walking Markov Chains. I recommend checking out the source code.

Huffman answered 6/5, 2010 at 14:58 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.