• Create a program that will take a string input from a user to check for the max depth of nested parenthesis given within that string. The max depth will be returned as an integer to the user. Conditions for the string input is to expect the user to input only a mix of integer values, parenthesis )' or (' and operators (+,-,-,/,*) symbols, no error checking is necessary on the programmers side for these inputs. Inputs with only parenthesis are also valid such as "() ()" and "(000)". these inputs would have a maximum nested depth of 1 and 2 respectively, whereas input such as ")(" and "((()" would not be valid and have a depth of zero (as they are not properly nested and closed)

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter7: User-defined Simple Data Types, Namespaces, And The String Type
Section: Chapter Questions
Problem 8PE: Write a program that reads in a line consisting of a students name, Social Security number, user ID,...
icon
Related questions
Topic Video
Question

Python programing

Question(Paranthesis Count)

Sample example 1:
User input: "(2 - (4*4) * (1)+9))"
Output: 3 (the 1' is nested within 3 times)
Sample example 2:
User input: "(9*9) + 8/3+(4*4)"
Output: 1
Sample example 3:
User input: "7"
Output: 0
Transcribed Image Text:Sample example 1: User input: "(2 - (4*4) * (1)+9))" Output: 3 (the 1' is nested within 3 times) Sample example 2: User input: "(9*9) + 8/3+(4*4)" Output: 1 Sample example 3: User input: "7" Output: 0
Create a program that will take a string input from a user to check for the
max depth of nested parenthesis given within that string. The max depth
will be returned as an integer to the user.
Conditions for the string input is to expect the user to input only a mix of
integer values, parenthesis )' or (' and operators (+,-,-,/,*) symbols, no
error checking is necessary on the programmers' side for these inputs.
Inputs with only parenthesis are also valid such as "() ()" and "O(00)"
these inputs would have a maximum nested depth of 1 and 2 respectively,
whereas input such as ")(" and "((()" would not be valid and have a depth
of zero (as they are not properly nested and closed)
Further examples and explanation on the next slide.
Transcribed Image Text:Create a program that will take a string input from a user to check for the max depth of nested parenthesis given within that string. The max depth will be returned as an integer to the user. Conditions for the string input is to expect the user to input only a mix of integer values, parenthesis )' or (' and operators (+,-,-,/,*) symbols, no error checking is necessary on the programmers' side for these inputs. Inputs with only parenthesis are also valid such as "() ()" and "O(00)" these inputs would have a maximum nested depth of 1 and 2 respectively, whereas input such as ")(" and "((()" would not be valid and have a depth of zero (as they are not properly nested and closed) Further examples and explanation on the next slide.
Expert Solution
steps

Step by step

Solved in 5 steps with 3 images

Blurred answer
Knowledge Booster
Instruction Format
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr