by calvinfornia
Hash table question
|
|
[18 replies] Last: To deal with hash collisions, you look for an empty slot in the hash t... (by dhayden)
|
by colt
'std::bad_alloc' when working with strings
|
|
[5 replies] Last: > run your program through use a debugger >> Well, I use GDB. show th... (by ne555)
|
Why doesn't this build |
|
[8 replies] Last: thanks salem, that fixed it (by piratekingluffy)
|
by stav
static initialization in header only library?
|
|
[3 replies] Last: Thanks alot guys (by stav)
|
by frek
Constexpr in C++ (1,2)
|
|
[36 replies] Last: Thank you very much. I don't think I have another question in this ca... (by frek)
|
by aceadams
How do I stop ..eof from reading the last line of input twice?
|
|
[7 replies] Last: No, I get its purpose, but it still feels like the sort of thing that ... (by Albatross)
|
Adjacency list, array of pointers |
|
[2 replies] Last: OP's code, reformatted: #include <cstring> #include <fstream> #includ... (by Albatross)
|
by dzikiwi
Inheritance question
|
|
[1 reply] : . I want to use dynamic casting to change my parent class from base t... (by Repeater)
|
by Cambalinho
why the graphics.h and conio.h was losed? (1,2)
|
|
[33 replies] Last: That Sams book is an older version of the book I linked. There are so... (by deleted account xyzzy)
|
by a00
do header files get compiled
|
|
[6 replies] Last: Okay, I suppose I'm already doing that. It also occurs to me that the... (by mbozzi)
|
by ndcn541
can't remove duplicated objects from vector
|
|
[2 replies] Last: std::unique only removes CONSECUTIVE duplicates. Your nominally equal ... (by lastchance)
|
by calvinfornia
Hash table with speed required
|
|
[2 replies] Last: as fast as possible means no collisions, don't even detect or handle -... (by jonnin)
|
by codecaine1
How to write code for this? - Class
|
|
[3 replies] Last: rectangle.h // #include guard: https://en.wikipedia.org/wiki/Include_... (by JLBorges)
|
by ndcn541
sorting and removing duplicates from vector
|
|
[2 replies] Last: Some variants: #include <iostream> #include <vector> #include <set> #... (by lastchance)
|
pointer inside struct |
|
[12 replies] Last: @jlb, that is why I personally NEVER declare more than one variable at... (by deleted account xyzzy)
|
by akash16
Size of Class/Object
|
|
[3 replies] Last: A couple of links for the curious. https://www.kernel.org/doc/Document... (by salem c)
|
by aceadams
How can I make my solution more efficient?
|
|
[11 replies] Last: So, you're saying zero holds a special value, but is that value suppos... (by Niccolo)
|
by ndcn541
Assigning part of a 2d array to a new 2d array
|
|
[7 replies] Last: @ fewdiefie You forgot that a is a 2D array, so a is the address... (by Duthomhas)
|
by fewdiefie
FPS game programming
|
|
[7 replies] Last: yea. I did physics sim / flight sim, just sans graphics (or on one or... (by jonnin)
|
by abcdef123
Using nested if for evaluation of signum function
|
|
[14 replies] Last: but, lastchance's answer is probably the best way to actually code it ... (by jonnin)
|