Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7810499
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 2, 20262026-06-02T03:48:22+00:00 2026-06-02T03:48:22+00:00

i want to construct my code for solving All nearest smaller values problem,here is

  • 0

i want to construct my code for solving All nearest smaller values problem,here is my effort for this

#include<iostream>
#include<stack>
using namespace std;
void all_smallest(int a[],int n)
{
    stack<int>s;
    for(int x=0;x<n;x++)
    {
        while(!s.empty() && s.top()>=a[x])
        {
            cout<<s.top();
            s.pop();
        }
        if(s.empty()){ continue;}
        else
        {
            s.push(a[x]);
        }

    }
}

int main()
{
    int a[]={0, 8, 4, 12, 2, 10, 6, 14, 1, 9, 5, 13, 3, 11, 7, 15};
    int n=sizeof(a)/sizeof(a[0]);
    all_smallest(a,n);

    return 0;
}

it compiles,but no output ,why?please help me

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-02T03:48:23+00:00Added an answer on June 2, 2026 at 3:48 am

    Checking Wikipedia you didn’t implement the algorithm correctly. Here’s what it should be:

        #include<iostream>
        #include<stack>
        using namespace std;
        void all_smallest(int a[],int n)
        {
            stack<int>s;
            for(int x=0;x<n;x++)
            {
                while(!s.empty() && s.top()>=a[x])
                {
                    s.pop();
                }
                if(!s.empty())
                {
                    cout<<s.top();
                }
                s.push(a[x]);
            }
        }
    
        int main()
        {
            int a[]={0, 8, 4, 12, 2, 10, 6, 14, 1, 9, 5, 13, 3, 11, 7, 15};
            int n=sizeof(a)/sizeof(a[0]);
            all_smallest(a,n);
            cout << "\n";
            return 0;
        }
    

    Output:

        004022601151337
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

i want to realize a construct in MS SQL that would look like this
I want to use the DbProvider class to construct a generic DAL component. This
I have a simple problem: I want to construct a regex that matches a
I don't want to construct ofstream in main(). Here is what I do but
I want to construct this XML file: <root> <data> <track src=123456> <desc id=1 mt=audio/mp3
Here's some working code: class A { public $Foo; public function GetFoo() { $this->Foo
I've been looking for ways of solving this problem for quite some time now.
I want to dynamically load a dll and construct a MyDllClass object. My code
I want to construct a transact sql script that will stop specified people from
If I want to construct a std::string with a line like: std::string my_string(a\0b); Where

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.