Programming Dijkstra's Algorithm
I have a question where I'm making my own implementation of Dijkstra's Algorithm (shortest weighed path through a graph). I have a current working version that doesn't need to be marking each vertex (or node or whatever, I think you get my point) as known. I'm not sure exactly if this is going to work correctly 100% of the time, and I was just wondering if anyone knows if its acceptable to not worry about nodes being "known".
I can post code if you'd like, but I was hoping more for a general answer rather than one specific to my own code.
Thanks

