#include void max_search_3(int x[4], int left, int right) { if (left - right == 0) { x[0] = 3; x[3] = 3; } if (left == 2 && right == 3) { x[0] = 3; x[2] = 3; } if (left == 3 && right == 2) { x[3] = 3; x[1] = 3; } if }