Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Write a class to validate a Json string, it has only {,}, [,], and string key and string value. Your program gets a string from

Write a class to validate a Json string, it has only {,}, [,], and string key and string value. Your program gets a string from the user and uses a pointer-based stack to determine whether its parentheses are properly balanced/matched. Size of character in the strings of parentheses is less than 100. The valid chars are [,],{,}, :, a-z, ", , Whitespace is acceptable too. You do not need to check if input Json string has a duplicate key

Note that this problem is simplified version of Expression Evaluation problem (pg. 128 and 129), where two stacks are used for operators and operand.

A few examples are given below.

Enter a json string: { "a":"b"}

True

Enter a string: { "a":"b", "x":"y"}

True

Enter a string: { "a":"b", "x":"y"

False

Enter a string: { "a": "b" "x": "y" }

False Enter a string: { "a":"b", "x": [ { "r":"a" }] }

True

Enter a string: { "a":"b", "x": [ { "r":"a", "a":"b" }] }

True

Enter a string: {"x":[{"r":"a","a":"b"}],"a":"b","t":[{"r":"a","a":"b"}] }

True

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Marketing Database Analytics

Authors: Andrew D. Banasiewicz

1st Edition

0415657881, 978-0415657884

More Books

Students also viewed these Databases questions

Question

7. Understand the challenges of multilingualism.

Answered: 1 week ago