by chrisname
Quicksort
|
|
[8 replies] Last: Oh god... that one is just annoying. Anyway, I don't think there's ... (by chrisname)
|
by dab
cin & if, else mix
|
|
[9 replies] Last: I made it work. I can use as many cin as i want now, including mixing ... (by dab)
|
by Seraphimsan
Good books for learning algorithm design
|
|
[7 replies] Last: Oh, it's sort of like GNU. It definitely looks weirder in pseudocode. (by helios)
|
by Seraphimsan
c++ glut callbacks
|
|
[4 replies] Last: heh, I understood what you meant :P, and I fixed it immediately after ... (by Seraphimsan)
|
by zachtastic
class error
|
|
[4 replies] Last: THANK YOU ...... ya i dont know why i had my sublist as an array .... ... (by zachtastic)
|
by stingBlah
Best way to sort a linked list?
|
|
[9 replies] Last: >>> I read that Insertion sort actually works much more efficiently fo... (by luisespinal)
|
by learnerCPP
Array in Worksheet Functions STDEV (Excel in C++)
|
|
[no replies]
|
by nosxlimit
priority queue
|
|
[12 replies] Last: to gratrstone actually i haven't studied about template before, so ... (by nosxlimit)
|
by quantumLeaf
invalid use of incomplete type (co-dependant classes and forward declaration)
|
|
[4 replies] Last: Obligatory link: http://cplusplus.com/forum/articles/10627/#msg4967... (by Disch)
|
Using templates for logic |
|
[4 replies] Last: Thanks, didn't know you could do this. (by AlwaysLearning)
|
by awcplus
compiler dependency of a code
|
|
[9 replies] Last: Glad to be of help. It is a common confusion. I remember when I was co... (by Duthomhas)
|
What do you use for error checking? |
|
[1 reply] : A combination of asserts and exceptions. asserts are supposed to ... (by jsmith)
|
by rustyboy
Queue/Stack ADTs with templates.
|
|
[4 replies] Last: Thanks for the tip (by rustyboy)
|
by lipun4u
template function error
|
|
[1 reply] : Call the function with Test<int>(10); or similar. (by moorecm)
|
by olredixsis
returning a subclass type object
|
|
[4 replies] Last: That's why I have this declaration in my function... typedef /*w... (by olredixsis)
|
by fengxu
cout on both screen and file
|
|
[11 replies] Last: sout << "\n" works :) And for "endl", which is a function templat... (by fengxu)
|
by jrburns42
simple loan program not working right
|
|
[4 replies] Last: Line 97 as you have it there doesn't do anything, it's just a value. ... (by Impacatus)
|
by fengxu
Change a parent class to a derived one
|
|
[3 replies] Last: Thanks. I got my code working by pointer and virtual functions. (by fengxu)
|
by genny
a class that return an array
|
|
[10 replies] Last: Thanks for the input kempfighter. I did not how to do it. if you see ... (by genny)
|
by sqwertle
I/O with command prompt.
|
|
[1 reply] : It isn't simple. On Windows, you need to use CreateProcess () alon... (by Duthomhas)
|