Give well illustrated flowchart and an algorithm that display minimum, maximum and average numbers given a list of numbers. Write a C++ program that asks the user to enter an integer number N and computes the factorial of N. The program should...
1) Write in pseudocode an algorithm that receives as input the root of a tree and it returns true if the tree is a proper binary tree (i.e. each internal node has 2 children) and false otherwise. Assu In C++, what is "tail rec...
C++ Write a function that takes a C-string as an input parameter and reverses the string. The function should use two pointers, front, and rear. The front pointer should initially reference the first 1. Design a divide-and-conquer...