Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #4K
~4K People Reached
This member's community profile is only visible to logged in members until they have earned 15 reputation points.

7 Posted Topics

Member Avatar for daveyb91

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 …

0
62
Member Avatar for daveyb91

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 …

Member Avatar for daveyb91
0
1K
Member Avatar for daveyb91

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 …

Member Avatar for The Dude
0
183
Member Avatar for daveyb91

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

Member Avatar for sknake
0
357
Member Avatar for daveyb91

Hello everyone, I just joined this community like 2 hours ago :) Davey

Member Avatar for ryan_vietnow
0
74
Member Avatar for daveyb91

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 …

Member Avatar for daveyb91
0
119
Member Avatar for RehabReda

[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(" …

Member Avatar for DdoubleD
0
2K

The End.