Very quick question.
Given any obect in C++, such as
Code:
class foo
{
public:
foo( int newBar = 0): bar( newBar)
{
// no code
};
foo( const foo& rhs);
...
[Tags: No tags defined yet] - Be the first to Tag this threadAdd TagsCancel
*Note: Tags must be comma (,) seperated. For example: boardtracker, forum search, search engine
I need to write a program that takes a graph using adjacency lists and prints the topological order of the graph. How the hell do I do this? I know how to find the topological order, but I have ...
[Tags: No tags defined yet] - Be the first to Tag this threadAdd TagsCancel
*Note: Tags must be comma (,) seperated. For example: boardtracker, forum search, search engine
Code:
/* imagine there are 3 towers. one tower has n rings and each ring is
larger than the one above
your objective is to move all the rings to the last tower moving only
one ring a a tim...
[Tags: No tags defined yet] - Be the first to Tag this threadAdd TagsCancel
*Note: Tags must be comma (,) seperated. For example: boardtracker, forum search, search engine
Can any one suggest me some algorithms that best in arrangement and scheduling problem ?
...
[Tags: No tags defined yet] - Be the first to Tag this threadAdd TagsCancel
*Note: Tags must be comma (,) seperated. For example: boardtracker, forum search, search engine
I am trying to solve the following problem and need opinion from other members:
Given an array 'a' of infinite elements in which first 'n' cells contain integers in sorted order and the rest a...
[Tags: No tags defined yet] - Be the first to Tag this threadAdd TagsCancel
*Note: Tags must be comma (,) seperated. For example: boardtracker, forum search, search engine
Hi Everyone,
This question is for the math geniuses out there...
Say I've got some numbers that when put through a machine produce another set of numbers ...
Example:
1112224444 yi...
[Tags: No tags defined yet] - Be the first to Tag this threadAdd TagsCancel
*Note: Tags must be comma (,) seperated. For example: boardtracker, forum search, search engine
Hi, I'm currently reading a problem book (examples are written in FORTRAN, but the problems are interesting none the less) from the late 80's that I got at my local library just keep my brain aliv...
[Tags: No tags defined yet] - Be the first to Tag this threadAdd TagsCancel
*Note: Tags must be comma (,) seperated. For example: boardtracker, forum search, search engine
i thought i posted this earlier, but i might have forgotten to submit it, as i can't find it.
anyway, i have to write a function that prints a leftist heap. the heap works similar to a binary...
[Tags: No tags defined yet] - Be the first to Tag this threadAdd TagsCancel
*Note: Tags must be comma (,) seperated. For example: boardtracker, forum search, search engine
I have a directed graph with weighted edges, implemented by a database table. The table contains 3 columns: source, target, price; each edge is implemented by a single row in that table.
I cal...
[Tags: No tags defined yet] - Be the first to Tag this threadAdd TagsCancel
*Note: Tags must be comma (,) seperated. For example: boardtracker, forum search, search engine
Please tell me how to go about this question-
A Quad Tree which has 341 nodes find out the max possible height and minimum possible height.
...
[Tags: No tags defined yet] - Be the first to Tag this threadAdd TagsCancel
*Note: Tags must be comma (,) seperated. For example: boardtracker, forum search, search engine
In RFC1951 -Deflate compressed Data Format Specification, indicates that when doing LZ77 Compression using chain hash algorithm.
I don't know how to use chain hash to do LZ77 Compression.
an...
[Tags: No tags defined yet] - Be the first to Tag this threadAdd TagsCancel
*Note: Tags must be comma (,) seperated. For example: boardtracker, forum search, search engine
I need to convolute (multiply) 360.000 different matrixes (80x80) with other a 1x80 matrix.
Because of these count big convolutions and because on every results matrix's I need to compute the m...
[Tags: No tags defined yet] - Be the first to Tag this threadAdd TagsCancel
*Note: Tags must be comma (,) seperated. For example: boardtracker, forum search, search engine
If there is a 4 digit number(Which is unknown), and each digit can range from 1-9, how would I go about adding all possible combinations to a list box?
...
[Tags: No tags defined yet] - Be the first to Tag this threadAdd TagsCancel
*Note: Tags must be comma (,) seperated. For example: boardtracker, forum search, search engine
hi
Can anyone guid me how I can bring Link List backwards? using struct and function?
<code>
typedef struct _slist { int _data; struct _slist *_Next} SList;
void PrintBackw...
[Tags: No tags defined yet] - Be the first to Tag this threadAdd TagsCancel
*Note: Tags must be comma (,) seperated. For example: boardtracker, forum search, search engine
Hi I am currently writing some code in C++ to convert one a number from one base to another base.
Problem is i dont know how to isolate digits in a number.
example if user input is 1548 and ...
[Tags: No tags defined yet] - Be the first to Tag this threadAdd TagsCancel
*Note: Tags must be comma (,) seperated. For example: boardtracker, forum search, search engine
Been struggling tring to find a way to do the following:
a ) Given a collection of "n" bit wide binary numvers (n<32), select only those with "m" bits set to 1. [This i...
[Tags: No tags defined yet] - Be the first to Tag this threadAdd TagsCancel
*Note: Tags must be comma (,) seperated. For example: boardtracker, forum search, search engine
I am working on an application using vb.net, and would like to make sure I use object oriented design, but am having a hard time figuring out how I should implement a data structure to interact wi...
[Tags: No tags defined yet] - Be the first to Tag this threadAdd TagsCancel
*Note: Tags must be comma (,) seperated. For example: boardtracker, forum search, search engine
I'm making a gravity simulator in C# right now. It will consist of fixed masses, like planets, and moveable masses, like asteroids. I have a class for each, with each having its own mass, positi...
[Tags: No tags defined yet] - Be the first to Tag this threadAdd TagsCancel
*Note: Tags must be comma (,) seperated. For example: boardtracker, forum search, search engine
Hello to everyone,
I was wandering about the possibility to create a recursive algorithm for the Miminum Spanning Tree problem. I've tryed a couple of ideas but they were uncorrect or unprecis...
[Tags: No tags defined yet] - Be the first to Tag this threadAdd TagsCancel
*Note: Tags must be comma (,) seperated. For example: boardtracker, forum search, search engine
HELP with that!!
somebody??
attached pic
...
[Tags: No tags defined yet] - Be the first to Tag this threadAdd TagsCancel
*Note: Tags must be comma (,) seperated. For example: boardtracker, forum search, search engine
Can anyone find subquadratic (in worst case) algorithm for
minmax convolution problem:
given numbers a[i], b[i] (i=0..n) evaluate c[k] for all k=0..n,
c[k] = max{ min(a[j],b[k-j])| j=0..k }
...
[Tags: No tags defined yet] - Be the first to Tag this threadAdd TagsCancel
*Note: Tags must be comma (,) seperated. For example: boardtracker, forum search, search engine
I know this is probably out of your scope, but since you've been so helpful...
I was wondering if I can just count the number of colors in a window.
it's a matlab project and my best bet i...
[Tags: No tags defined yet] - Be the first to Tag this threadAdd TagsCancel
*Note: Tags must be comma (,) seperated. For example: boardtracker, forum search, search engine
How do programs like Microsoft Math or Mathematica solve equations? (Exactly, like sqrt(2), not numerically, like 1.41)? What is the algorithm?
...
[Tags: No tags defined yet] - Be the first to Tag this threadAdd TagsCancel
*Note: Tags must be comma (,) seperated. For example: boardtracker, forum search, search engine
How do you do that, assuming you have an array of bits and the decimal location?
...
[Tags: No tags defined yet] - Be the first to Tag this threadAdd TagsCancel
*Note: Tags must be comma (,) seperated. For example: boardtracker, forum search, search engine
Hello,
I have a database of about 16,000 apartments that are for the most part user generated entries. Now I have another database of apartments that I have purchased of about 115,000 apartmen...
[Tags: No tags defined yet] - Be the first to Tag this threadAdd TagsCancel
*Note: Tags must be comma (,) seperated. For example: boardtracker, forum search, search engine