Dijkstra and Kruskal -
Has anybody the vb code of these two algorithms. I would need them. thx
Dijkstra and Kruskal -
Has anybody the vb code of these two algorithms. I would need them. thx
Various Pathfinding Implementations (A*, Dijkstra & BFS) -
This program demonstrates various pathfinding methods. Hopefully it will allow other people to understand pathfinding.
Note to moderators: I am not sure where this could go so I posted it here, feel free to move it to an appropriate place
See attachment
Why you shouldn't code in BASIC -
A nice quote from Dijkstra sums up BASIC:
Quote:
It is practically impossible to teach good programming to students that have had a prior exposure to BASIC: as potential programmers they are mentally mutilated beyond hope of regeneration.
Dijkstra optimization - URGENT! -
Hi
I have a VB proggy that takes a Map and then searches for the shortest path between two points - actually between several pairs in one run - as many as 600-800 pairs -
naturally the proggy gets damn slow!
Please suggest what optimizations can be done to improve the algo?
optimization for dijkstra with db -
Hi
I have a VB proggy that takes a Map and then searches for the shortest path between two points - actually between several pairs in one run - as many as 600-800 pairs -
naturally the proggy gets damn slow!
Please suggest what optimizations can be done to improve the algo? T
Real World Application of various Algorithms -
Ok, I have being studying nifty Algorithms and Programming Techniques. I know what they are for but I am interested in seeing that in the real programming situations (such as a job) are these techniques used at all? I've listed a few, I am interested in how much they are used in hte
Blank Engine (3D Engine) -
I have created a 3D engine in VB6 using DirectX8. I made a post at vbGore that has some screenshots if you want to check it out, but remember that was over a month ago. (http://www.vbgore.com/forums/viewtopic.php?t=1950) Please note that the website is not working and I will try to get
Exit Sub and Goto -
2.1.2.1 Maximizing Structure
"Spaghetti code" is a common derogatory reference to code with GOTO or equivalent execution control statements that cause an unstructured shift of execution from one branch of a program to another. The safety concern is that the execution time
[02/03] Creating a file and writing to it -
I want to have this program read a list of names and date of births, and then based on the years they were born, add them to two files, juniors.txt and seniors.txt. I'm pretty sure I know how to actually create a file and have items written into it, but I'm not sure what method I'd us