Forum: C++ Aug 30th, 2004 |
| Replies: 4 Views: 4,569 Well it's difficult to predict long-term but its a pretty good bet that open-source would play a major role in the future...due to a number of reasons like its distributed nature...low cost...and so... |
Forum: C++ Aug 18th, 2004 |
| Replies: 2 Views: 2,195 <code>
void hashtable::createbuck()
{
int i=0;
while(i<=HSIZE/NOLL) //HSIZE=211 the no of linked lists
{ //NOLL the number of linked lists written
string no; //at a time...
string... |
Forum: C++ Aug 18th, 2004 |
| Replies: 2 Views: 2,195 Hi,
I'm trying to write an array of linked lists to disk using c++.I'm running this program on Linux.My data structures are as follows...
A Hashtable class which holds the array of linked... |
Forum: C++ Jul 30th, 2004 |
| Replies: 4 Views: 26,334 I am planning to use Linux...(g++ compiler..)...i know about the c part of it but is there something for c++? |
Forum: C++ Jul 29th, 2004 |
| Replies: 4 Views: 26,334 Hi,
Does anyone know how i could get a list of all files in a given directory given the directory's path using c++? |
Forum: C Jul 28th, 2004 |
| Replies: 2 Views: 3,336 look at dikstra's and floyds algorithm.... |
Forum: C++ Jul 27th, 2004 |
| Replies: 1 Views: 3,684 Cant u use a library function or something of create ur delay?
If the delays are taking place simultaneously then call the common delay and then the delay of the ball which requires a longer delay.... |
Forum: C++ Jul 27th, 2004 |
| Replies: 2 Views: 3,060 Hi,
I want to implement as search program which will be able to search through a given set of documents for a given string...I've heard that indexed searches are the best bet in these cases...(if... |