Coding | Mcqs | Multiple choice questions | Informative | Computer Science | Engineering | Aptitude | Quants | Verbal

INFEED

5 july 2021 | sbt

 1.

 

#include <stdio.h>
int main() {
   // printf() displays the string inside quotati
   int a,b,n[100];
   scanf("%d%d",&a,&b);
   for(int i=1;i<=a;i++){
     scanf("%d",&n[i]);
   }
   for(int i=b;i>0;i--){
     printf("%d ",n[i]);
   }
   for(int i=b+1;i<=a;i++){
     printf("%d ",n[i]);
   }
   return 0;



*********************************************************

 2.

#include <iostream>
#include <string>
#include <queue>
using namespace std;
void generate(int n)
{
queue<string>q;
q.push("1");

int i=1;
while(i++<=n){
    q.push(q.front()+"0");
    q.push(q.front()+"1");
    cout<<q.front()<<' ';
    q.pop();
}
}
int main()
{
int n ;
scanf("%d",&n);
generate(n);
return 0;
    
}

**********************************************************


3.

#include<bits/stdc++.h>
using namespace std;
const int maxn=100010;
vector<int>v1,v2;
int a[maxn];
int ans[maxn];
int main()
{
    int n;
    while(~scanf("%d",&n))
    {
        v1.clear();
        v2.clear();
        for(int i=1;i<=n;i++)
            scanf("%d",&a[i]);
        for(int i=n;i>=1;i--)
        {
            if(v1.size()==0||v1.back()>=a[i])
            {
                v1.push_back(a[i]);
                v2.push_back(i);
                ans[i]=-1;
            }
            else
            {//C.rbegin () Returns a reverse iterator that points to the last element of the container c
                           //c.rend () Returns a reverse iterator that points to the first element in front of the position of the container c
                                 int j = lower_bound (v1.rbegin (), v1.rend (), a [i]) - v1.rbegin (); // we find a [i] n order to sort according to the lower limit position.
                                 j = v1.size () - j; // v1 j has not less than one a [i] is.
                                 ans [i] = v2 [j] -i-1; // j + 1 is the first v2 [j], this time is the rearmost smaller than the number of a [i].
            }
        }
        printf("%d",ans[1]);
        for(int i=2;i<=n;i++)
            printf(" %d",ans[i]);
        printf("\n");
    }
}


*************************************************************************


Post a Comment

Previous Post Next Post