Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: ankan
  • Content: Threads
  • Order by date
  1. ankan

    destructing a linked class!!

    Hi I wanted to make a doubly linked class (like a linked list but with member functions too). The question is should the destructor delete all the objects that are linked, or just that particular object. :-I help. Ankan. Please do correct me if I am wrong. s-)
  2. ankan

    A question on realloc()...

    What realloc(ptr, newsize) does is that it adjusts the size of the allocated block (ptr) to newsize, copying the contents to a new location if necessary. The contents are unchanged upto the lesser of the new and old sizes. My question is ... if the contents are copied to a new location, is it...
  3. ankan

    A binary tree and its pointers ... (PLEASE help)

    PLEASE help in anyway you can. I've got fed up with trying to solve this. Lets get to the point directly... A simple binary tree... struct tnode { char **word; /* this stores the different words */ int count; /* this keeps the count */ struct tnode *left; struct tnode...
  4. ankan

    Binary Tree and an Exception Throw ...

    If u don't have the pateince to go through the code below just skip to the 'Problem' written way below. But please help in anyway you can. Lets get to the point directly... A simple binary tree... struct tnode { char **word; /* this stores the different words */ int count; /* this keeps the...
  5. ankan

    Where is Borland Help Files ... HELP !!!

    Is there anyway I can get my hands on the Borland C++ Compiler 5.5 HELP files? The language help files, that is. I searched the Borland site but did not find one. Please help. Thanks in advance. Ankan. Please do correct me if I am wrong. :-)
  6. ankan

    Connection status indicator shows online even when disconnected.

    Hi The problem is that the connection status (Dial Up Networking) keeps showing that a connection is there even when actually I've been disconnected. Thus whenever the pages do not come up either due to high traffic (and thus taking sometime) or because the connection's not there anymore, I do...
  7. ankan

    Sites on Sorting - Searching - Data structures PLEASE!!!

    Hi Are there any good sites that have details about the various sorting & searching algorithms and about data structures? Please help. Thanks in advance. Ankan. Please do correct me if I am wrong. :-)
  8. ankan

    Connection status indicator shows online even when disconnected.

    Hi The problem is that the connection status (Dial Up Networking) keeps showing that a connection is there even when actually I've been disconnected. Thus whenever the pages do not come up either due to high traffic (and thus taking sometime) or because the connection's not there anymore, I do...

Part and Inventory Search

Back
Top