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 TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Ansi C++ codelibs

Status
Not open for further replies.

thein

Programmer
Sep 23, 2002
19
IS
Does anyone know what to use instead of codelibs dynarray in the C++ standard library. Ansi C++ does not support codelibs library on HP-UX
 
What does CodeLib's dynarray do? Is it a vector of some sort? If it is, why not just use std::vector?

Is this HPUX 10.x or HPUX 11.x?
 
It HPUX 11.0.
Yes I think we have to use vector. It is recomended at hp.com.

Thank you for your reply xwb
 
dnyarray is a dynamic array, you can go with a vector or a list (which is actaully a linked list, so remeber search time is higher, and the insert and remove is lower.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top