No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
7 Posted Topics
Hello people, A couple days ago I asked something for my assignment, which can be found here: [url]http://www.daniweb.com/software-development/csharp/threads/362561[/url] Only.. I have to ask another question considering this.. I think I do understand the A* algorithm.. only I don't really know how to build the grid up for the cars.. I …
Dear people.. For an assignment for school I have to make a solver for a Rush Hour game.. if you aren't familiar with Rush Hour.. check this link: [url]http://www.puzzles.com/products/rushhour.htm[/url] For this solver I have to use the A* search algorithm, I looked on the internet a bit, and I think …
This morning while I checking my email I saw that I had a new PM, so looking it up, this was in the PM: Hi daveyb91, One of your posts has received an infraction warning. [url]http://www.daniweb.com/forums/showthread.php?p=958104[/url] As a DaniWeb moderator, I've cited this post as violating the following rule: Keep …
Hello everyone, Could someone please give me a good explanation about what I can do with it? I can't really find it on Google.. Thanks in advance, Davey
Hello everyone, I need to do an assignement for school. But i'm kinda stuck on a bit, so i'm here to ask some help :D Okay, my question: In my C# application I need to make a webrequest to a php page. This worked, but i want the php page …
[QUOTE=DdoubleD;958959]You are stuck in and endless loop because you keep adding to "available" following the recursive call. What is the objective here? [code] public void recursion(List<int> history, List<int> available) { if (available.Count == 0) { for (int i = 0; i < history.Count; i++) { Console.Write(history[i].ToString() + "->"); } Console.WriteLine(" …
The End.
daveyb91