Algorithim Verification Programming Computer Science by msnathan72 Ok so I have an Algorithim Verification assignment I need helpfiguring out this is my first … Help Writing Algorithim To Get Through Maze!!! Programming Software Development by hurbano … have an assingment in which i have to right an algorithim to get through a maze. I dont know where to… Re: Help Writing Algorithim To Get Through Maze!!! Programming Software Development by hurbano i need help writing an algorithim to get through a maze. i have a rough idea … Re: Help Writing Algorithim To Get Through Maze!!! Programming Software Development by hurbano … does not begin. we were just supposed to write the algorithim to get through the maze but the rest was given… Re: Algorithim Verification Programming Computer Science by dickersonka ok we see your assignment, what have you done so far, what are you having trouble with? Re: Algorithim Verification Programming Computer Science by MosaicFuneral I spotted several problems, I believe you're suppose to rewrite the algorithm? Re: Algorithim Verification Programming Computer Science by Ezzaral [QUOTE=msnathan72;748248]this is my first time to daniweb and I have heard nothing but great feedback from my peers![/QUOTE] And did your peers also mention that help is only given to those who demonstrate some effort? Re: Algorithim Verification Programming Computer Science by ladylove469 Need help with what happens when a user enters wingding Re: Algorithim Verification Programming Computer Science by rubberman Yeah. This is a 5 year old question, to which the correct answer should have been "Do your own homework idiot!"... :-) Algorithim Programming Software Development by Xokzin Hi There, I'm learning C++. One of the questions requires a function to do a calculation below. I have no clue how to do this. Can anybody help? [QUOTE]WeTryToHelp gives bursaries to help students with buying their textbooks. The amount of money depends on how many modules the student passed during 2007 and for how many modules the student … Re: Algorithim Programming Software Development by Nick Evan This is [URL="http://www.daniweb.com/forums/faq.php?faq=daniweb_policies"]not a free homework service[/URL]. You'll have to show some effort before you get help. So post what you've done so far. Or ask specific questions Re: Algorithim Programming Software Development by Xokzin Fair enough. Here is the code [code=cplusplus]#include <iostream> using namespace std; //modP is the passed modules and modR is registered modules float bursary(float modP, float modR) { float burs; {if (modP == 0) burs = 0; else if (modP == 1 && modR >= 1) burs = (modP * 300); else … Algorithim to make a word from a hand of letters Programming Computer Science by racshot65 Hi, I'm currently going through MIT's open courseware course on programming and I'm stuck on this assignment: [URL="http://ocw.mit.edu/NR/rdonlyres/Electrical-Engineering-and-Computer-Science/6-00Fall-2008/BA350EF8-DA45-41D6-AEA2-B8555EE77DBE/0/pset6.pdf"]http://ocw.mit.edu/NR/rdonlyres/Electrical-Engineering-and-Computer-Science/6-… Re: Algorithim to make a word from a hand of letters Programming Computer Science by BestJewSinceJC So this is basically... similar to Scrabble? So you need two things: 1. Anagram finder to find every possible anagram 2. Simple search of your dictionary to see which anagram results in the most points. P.S. I'm not a genius on the subject but it seems like you need to generate every possible permutation of your set of letters and for each … Algorithim ideas? Programming Software Development by JoshuaBurleson I'm trying to figure out how to deal with multiple matches in my address book, say the user has two people by the name of Bob; one is Bob Lastname and the other is Bob Namelast, how would you approach dealing with telling them to specify, and then allowing them to do so and get a result. Also, what if a user just has two contacts named Bob with no … Re: Algorithim ideas? Programming Software Development by Gribouillis If your address book is a console application, I suggest displaying a menu to choose from like [code=text] 'Bob' matches 4 contacts: 1. Bob Lastname 2. Bob Namelast 3. Bob 4. Bob enter your choice: [/code] Re: Algorithim ideas? Programming Software Development by JoshuaBurleson it's a GUI 'tkinter' application Re: Algorithim ideas? Programming Software Development by Gribouillis [QUOTE=pyguy62;1643558]it's a GUI 'tkinter' application[/QUOTE] Then pop up a Listbox widget with the same list. Re: Algorithim ideas? Programming Software Development by JoshuaBurleson oh great, I haven't even heard of the listbox until now, I'll let you know how it works out. Thanks. Re: Algorithim ideas? Programming Software Development by Gribouillis [QUOTE=pyguy62;1643562]oh great, I haven't even heard of the listbox until now, I'll let you know how it works out. Thanks.[/QUOTE] Some applications let you choose a word in a dictionary. You have an entry widget where you start typing your word and a listbox-like widget which content is updated every time you type a character in the entry widget… Re: Algorithim ideas? Programming Software Development by TrustyTony As I know you use Python 3.2.2, it is good to use ttk themed widgets, documentation is here: [url]http://docs.python.org/py3k/library/tkinter.ttk.html?highlight=ttk#tkinter.ttk[/url] Re: Algorithim ideas? Programming Software Development by JoshuaBurleson I guess I'm just not quite getting how it would update each time the user enters a character into the Entry field. Re: Algorithim ideas? Programming Software Development by TrustyTony From [url]http://stackoverflow.com/questions/4140437/python-tkinter-interactively-validating-entry-widget-content:[/url] [CODE]import Tkinter as tk class MyApp(tk.Tk): def __init__(self, *args, **kwargs): tk.Tk.__init__(self, *args, **kwargs) # valid percent substitutions (from the Tk entry man page) # %d = Type of … Re: Algorithim ideas? Programming Software Development by Gribouillis [QUOTE=pyguy62;1643832]I guess I'm just not quite getting how it would update each time the user enters a character into the Entry field.[/QUOTE] An exemple is perhaps the Pmw.EntryField widget with validator (see [url]http://pmw.sourceforge.net/doc/EntryField.html[/url]). Every time the 'Odd length' entry is modified in the following example, a … Re: Help Writing Algorithim To Get Through Maze!!! Programming Software Development by Coder++ just do what your teacher said then man ;). Assuming your maze is an integer array of zeros and ones then just have your program keep moving "forward" in a sense that forward is constantly changing, and assuming zero is walkable and one is a wall, check whether or not the block to the right of you is a one. If the block isn't a one, … Re: Help Writing Algorithim To Get Through Maze!!! Programming Software Development by lllllIllIlllI Here is an A* Path finding tutorial, it will be able to help, because path finding is probably the easiest way to get through this problem. [url]http://www.policyalmanac.org/games/aStarTutorial.htm[/url] Re: Help Writing Algorithim To Get Through Maze!!! Programming Software Development by hurbano i have something like this so far. our group came up with this but im not sure if its whats supposed to be. thanks [code=c++] void mazeWalk(char** &maze, int xCoord, int yCoord, int direction) { printMaze(maze); maze[xCoord][yCoord]='x'; if(yCoord==11) { cout<<"Maze has been successfully … Encryption Example Programming Software Development by overwraith …hashAlgorithims[hashMethod]; else throw new NotImplementedException("This algorithim has not been implemented. "); return …/// <summary> /// Gets the underlying symmetric algorithim for the object's password capability. /// </summary&… How to upgrade database fields Programming Software Development by overwraith …clear as well as the fact that with a hash algorithim you cannot actually reverse the password to it's plain… thing. I know that the higher the number after the algorithim, generally the better secured it is, because it "…many times, but would need to do some research. What algorithim is usually best for this kind of thing though. I… C++ Trying to fix variable Programming Software Development by chubkakes1 … the playerx and enemyx so that i can use my algorithim to calculate the angle to fire. so the program should… ,,, press 2 >> it stores that location, use the algorithim i have to calculate the angle between the 2,,, i… have the algorithim working,, i just need your guys help to get the…