calmhandtitanMay '13Are STL string too slower than the old-fashioned null terminated character strings?? createdMay '13last replyJun '133replies379views2users
leppyr64May '13yes. But C strings are much more cumbersome to use in some instances. It's more important that you're not using cin and cout.
calmhandtitanMay '13okaythanx for the quick reply and what about using new node() instead of mallocis new node() also too slow??
leppyr64Jun '13That depends on what you mean by node() Generally allocating memory on the fly is costly. If it cannot be avoided then it will be ok.