Advertisement

1 - 10 of 651 containing alltags:("algorithm") (0 seconds)
I was wondering how you could (in c/c++ or any language) take an integer like 12345 and convert it into the string "12345" like the C function "Itoa" does.  It would be great if someone could give ...
Zones: C++Date Answered: 10/16/1997 Grade: A Views: 0
Hi, I am studing Floyd's Algorithm and I want to implement it by using C.  However, somehow, I just get stuck in there. I want to use that program to read a list of data from stdin and then write a...
Zones: CDate Answered: 12/17/1997 Grade: A Views: 0
I'm looking for algorithms about B-Tree
Zones: CDate Answered: 02/11/1998 Grade: A Views: 16
I'm coding a mud (freud.et.tudelft.nl:8888) and want to add typo correction. What i'm looking for is a website with algorithms like this one. I've looked through the sources of tcsh but that was pr...
Zones: CDate Answered: 04/29/1998 Grade: D Views: 0
I have a class Rational like this: class Rational { public:    Rational(int n = 0, int d = 1);    ... private:    int n;    int d;    void reduce(); }; the class Rational umplements a fraction ...
Zones: C++Date Answered: 06/26/1998 Grade: B Views: 0
Does anyone have a file Search algorithm I could use?  Example, I want to find mspaint.exe....I want to write a piece of code that would search for that file.  Thanks in advance.
Zones: CDate Answered: 06/29/1998 Grade: B Views: 0
How do I implement Dijkstra's algorithm in C++ code? How do I read in an input file with the seperate node to node connections and weights into this program. Any help is appriciated.
Zones: CDate Answered: 08/24/1998 Grade: C Views: 0
I'm trying to write the function which tells me whether an (x,y) point is in a certain polygon? i already written ones for rectangle & circle but stuck on the Poligon - the function looks like tha...
Zones: Web ImagesDate Answered: 01/26/1999 Grade: A Views: 12
I'm looking for an algorithm to return which bit in a bit mask is set. That is given a bit mask of 0x0080, the routine should return a 7. (i.e 2 ** 7 = 0x0080). To keep it simple let's assume that...
Zones: CDate Answered: 05/04/1999 Grade: A Views: 0
I am developing a MFC based component to encrypt and decrypt credit card numbers. Is there any standard algorithms for doing it? Where can i find such algorithms
Zones: Windows MFCDate Answered: 06/05/1999 Grade: C Views: 0