by memepapa
Need advice - Kadane's algorithm vs Recursion method
|
|
[6 replies] Last: thanks Jonin, well written and your explanation is helping me progress... (by memepapa)
|
by memepapa
error: no type named 'cout' in namespace 'std'
|
|
[11 replies] Last: thanks for expanding on this discussion, I'm learning from your exchan... (by memepapa)
|
by limwn
How to search in struct in c?
|
|
[2 replies] Last: exact string searching is painful to the user. the caps/lower letters... (by jonnin)
|
Find element in priority queue |
|
[4 replies] Last: @seeplus It's just a problem on our online judge which I wanted to sol... (by Highground7490)
|
How to combine/sort text from an email and a .txt doc |
|
[11 replies] Last: Here's my best progress so far #include <iostream> //#include <strin... (by the other jorge)
|
by alexas
Advice for data container / structure
|
|
[14 replies] Last: @kbw: without further information, I think your first post is the best... (by newbieg)
|
by ragnarokas
Split 3D into 1D vector
|
|
[2 replies] Last: Thank you very much (by ragnarokas)
|
by allanbang
Is this the correct way to get an "user" directory
|
|
[6 replies] Last: Have a look at SHGetKnownFolder https://docs.microsoft.com/en-us/windo... (by seeplus)
|
by beethekid
How to clear the input stream when given two inputs
|
|
[1 reply] : #include <iostream> #include <utility> #include <string> #include <re... (by JLBorges)
|
by Hcarr2
assigning variables
|
|
[5 replies] Last: #include <iostream> #include <string> using namespace std; int main(... (by lastchance)
|
by memepapa
unordered_set<int> s( argument1, argument2 );
|
|
[2 replies] Last: s will contain the unique elements added from nums. If the size of s i... (by seeplus)
|
by pilot1909
File write problem
|
|
[2 replies] Last: THANKYOU @salem c (by pilot1909)
|
by Typehello
How to convert this txt file to an table output
|
|
[9 replies] Last: As an extension, this will read the file, display the data and then re... (by seeplus)
|
by rradeba
Execute section of code only once
|
|
[11 replies] Last: A toggle switch turns power on or off and does not automatically retur... (by againtry)
|
by testshowlog
when use object replace smart pointer as member in class
|
|
[1 reply] : > using a raw object as a member and when using a smart pointer as a m... (by JLBorges)
|
by Typehello
Time display format
|
|
[4 replies] Last: The format returned from ctime() is fixed (www mmm dd hh:mm:ss yyyy). ... (by seeplus)
|
by Drago888
C++ 20 full features
|
|
[16 replies] Last: There are more BB Code tags usable here, not just code tags. See 2nd ... (by deleted account xyzzy)
|
by EthanRDMdev
Can't stop my character to fly around when jumping
|
|
[9 replies] Last: Simply, there are 3 basic equations: v = u + at s = ut + (1/2)a(t^2) ... (by seeplus)
|
by mencecpp
How to use a non-const int to assign array size?
|
|
[10 replies] Last: The reason I want to stick to statically sized arrays is because they... (by mbozzi)
|
by memepapa
main within class?
|
|
[5 replies] Last: Learn C++ on "Recursion": https://www.learncpp.com/cpp-tutorial/recur... (by deleted account xyzzy)
|