User profile: JustinPlusPlus

User info
User name:JustinPlusPlus
History
Joined:
Number of posts:10
Latest posts:

3 partitions of equal sum
The constraints are: vector size 1-20, vector element size 1-30. Yes I know how to solve problem pa...

3 partitions of equal sum
[code] int partition3(vector<int> &A) { int sum = std::accumulate(A.begin(),A.end(),0); if(sum...

3 partitions of equal sum
I want to write a function that shows if it is possible for given vector of positive integers to be ...

c++ simple trees
Thanks for the help

c++ simple trees
Can someone please tell me why the code crashes? I'm trying to code a simple binary search tree. Ma...