#include <iostream> #include<string> // #include using namespace std; struct Node{ int value; int max; }; bool judge(int* help,int num){ if(num == 0){ return false; } int min_ = help[0]; for(int i = 1;i<num ; i++){ if(help[i]>min_){ min_ = help[i]; }else{ return false; ...