Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

I am having a difficult time to find an O(N) solution to this problem. I am using C++. Any help or insight would be appreciated.

I am having a difficult time to find an O(N) solution to this problem.

I am using C++. Any help or insight would be appreciated. Thanks

image text in transcribed

Sorting Description For a given permutation of 1...n , noting it as P. you need to insert the number in P into a set Sone by one, i.e. P1, P2, ...,Pn-1, Pr. After the insertion of each number, you need to find the largest number in Sthat is smaller than the inserted number and the smallest number in Sthat is larger than the inserted number. Initially, two integers 0, n +1 has already been inserted into S so that the results always exist. Input The first line contains a positive integer n. The second line contains n integers, separated by spaces, the i-th integer of which denotes P. Output Print n lines, each line contains two integers separated by a space, the i-th line of which denotes the result required after the insertion of the i-th number. The first integer of a result represents the largest number in that is smaller than the inserted number and the latter one represents the smallest number in that is larger than the inserted number. Sample Input/Output Input 5 1 5 2 4 3 Output 06 16 1 5 2 5 24 Constraint 1<>

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

Professional Microsoft SQL Server 2014 Integration Services

Authors: Brian Knight, Devin Knight

1st Edition

1118850904, 9781118850909

More Books

Students also viewed these Databases questions

Question

What do Dimensions represent in OLAP Cubes?

Answered: 1 week ago