by gevCplus
writing a singly linked list to a file
|
|
[11 replies] Last: Ok, I am putting some of my code in summary (I didn't include the node... (by gevCplus)
|
by brim4
How to read a text file of varying line size into a data structure?
|
|
[3 replies] Last: An alternative take is to use a vector<int> for the marks so that any ... (by seeplus)
|
by sophia218
[HELP] how to read a file byte by byte
|
|
[1 reply] : Something along these lines: #include <iostream> #include <fstream>... (by JLBorges)
|
by JUANDENT
How to deduce a native array in a template function?
|
|
[4 replies] Last: Thanks!!!! (by JUANDENT)
|
by VoB
On returning references to local objects and subscripting operator. (1,2)
|
|
[31 replies] Last: Fair enough. (by helios)
|
by daytooner
virtual classes confusion
|
|
[2 replies] Last: Thanks, Ganado. After I read your reply, I found this as well @https:/... (by daytooner)
|
by Mitsuru
Pre-allocated memory data for parallel threading keeping locality
|
|
[6 replies] Last: Today, I did performance check in NUMA-arch machine (Xeon Gold) and no... (by Mitsuru)
|
How to take this Python code and convert it into C++: list(product([True, False], repeat=len(some list)])) |
|
[6 replies] Last: the trouble is the problem is in a vacuum ... now that you generated i... (by jonnin)
|
by subhransu
Creating objects and downcasting them in the same line?
|
|
[1 reply] : Of course it throws an error. A Parent is not a Child. You would like... (by keskiverto)
|
by Mitsuru
How does cache of function calls work?
|
|
[8 replies] Last: Dear dhayden Thank you for your reply. I would like to be oblivious a... (by Mitsuru)
|
by EmanCS
min_element : returning all instance
|
|
[1 reply] : Unless they happen to be ordered by f, it's not possible to return the... (by dutch)
|
by MitchJohnson
Socket Programming, Casting sockaddr_in to sockaddr. Why?
|
|
[1 reply] : Use code tags when posting code. sockaddr is a generic structure that... (by dutch)
|
by frek
Infinite for loop
|
|
[5 replies] Last: 1) - Wrapping around 2's complement is the most likely scenario, whic... (by Ganado)
|
by Mitsuru
Hashing way of bounded non-sequential index for contiguous data structure
|
|
[4 replies] Last: Dear JLBorges Thank you for your profound reply. I am willing to con... (by Mitsuru)
|
by Mitsuru
Best book or documents for vectorization (SIMD operations in) for C++
|
|
[4 replies] Last: Dear keskiverto Thank you for your advice in auto-vectorization. At ... (by Mitsuru)
|
Final State Machine |
|
[6 replies] Last: #include<iostream> #include<thread> #include<chrono> #include<windows... (by lastchance)
|
by gevCplus
Linked list in a linked list question
|
|
[4 replies] Last: @dutch: Thanks a lot! It didn't cross my mind at all to use templates!... (by gevCplus)
|
by opfabi
multiply the odd numbers from a file
|
|
[4 replies] Last: #include <iostream> #include <fstream> #include <sstream> using names... (by lastchance)
|
by woohyeon
Multiple inheritance is bad?
|
|
[3 replies] Last: Thank you guys. I thought too that many people say something is bad, b... (by woohyeon)
|
by woohyeon
Enum type as a member variable.
|
|
[13 replies] Last: jonnin // Thank you for your advice! I understood that I have to choos... (by woohyeon)
|