using an incedence matrix to represent a graph, and using the Depth First Search algorithm, how does one code
the Depth First Search function to do this.
pseudo code for DFS function:
DFS(int i...
http://www.experts-exchange.com/Programming/Languages/C/Q_10029001.html
Zones:
CDate Answered: 11/18/1997 Grade: A Views: 5
I have a problem building , or reformatting, data held in a CAR information Database.
I want to display car model information for GB. This information display what features the model has.
FEATURE...
http://www.experts-exchange.com/Database/Sybase/Q_10081537.html
Zones:
SybaseDate Answered: 09/17/1998 Grade: B Views: 4
the size of the matrix should be n x n. Like 2 x 2, 3 x 3,
100 x 100. For example, n = 5, so 5 x 5. you must use 1 to 25 to fill out the matrix from small to large. Like
small -----------> ...
http://www.experts-exchange.com/Programming/Languages/C/Q_10098501.html
Zones:
CDate Answered: 12/13/1998 Grade: C Views: 0
Hey, I have writen a small 3d engine.
However, I need to rotate a object, as well as keep the object in place and expand it. I have read in the MSDN that the corret way to do this is to multiply ...
http://www.experts-exchange.com/Programming/Languages/C/Q_10295842.html
Zones:
CDate Answered: 02/21/2000 Grade: A Views: 0
I am currently using MetroWerks Codewarrior Version 4 on a PC running Windows NT. My problem is that I need to use matrix manipulation in my program. Does anybody know how to go about manipulatin...
http://www.experts-exchange.com/Programming/Languages/CPP/Q_10841721.html
Zones:
C++Date Answered: 07/31/2000 Grade: B Views: 10
Is Matrix class (for numeric computing) available?
http://www.experts-exchange.com/Programming/Languages/Visual_Basic/Q_20060609.html
Zones:
Visual BasicDate Answered: 01/25/2001 Grade: A Views: 0
I would like to know how to implement dynamic matrix by using STL. I don't know the size of the matrix from advance (I get it from the constructor).
http://www.experts-exchange.com/Programming/Languages/CPP/Q_20123434.html
Zones:
C++Date Answered: 05/24/2001 Grade: A Views: 0
I've multiplied 2 matrices
eg
6 1.5 8 7
4 1 * 6 4
my results were
57 48
38 32
what i am trying to do now is find the average of
57 + 48 = 105 / 2 = 52.5 and
38 + 32 = 70 / ...
http://www.experts-exchange.com/Programming/Languages/CPP/Q_20129007.html
Zones:
C++Date Answered: 02/19/2002 Grade: A Views: 0
i am required tio write a program that reads matrices from a data file, computes the sum and other mathematical operations. i am suppose to implement this program using three files namely, matrix.h...
http://www.experts-exchange.com/Programming/Languages/CPP/Q_20138979.html
Zones:
C++Date Answered: 03/08/2002 Grade: A Views: 0
My code presently has the following ugly form:
int NUMROWS, NUMCOLS ;
float* ArrayA = new float[ NUMCOLS * NUMROWS ] ;
//
// Initialize ArrayA to 0.0
//
for ( int i = 0 ; i < NUMROWS; i+...
http://www.experts-exchange.com/Programming/Languages/CPP/Q_20177353.html