Given an array of size N in which every number is between 1 and
N, determine if there are any duplicates in it. You are allowed
to destroy the array if you like. [ I ended up giving about 4 or
5 different solutions for this, each supposedly better than the
others ].



Given an array of size N in which every number is between 1 and N, determine if there are any dupli..

Answer / sujan_faith

<!--i have just replaced the same array element with
the value zero but alse we can destroy that element-->>


#include<iostream>
#define size 10
using namespace std;

int main()
{
int a[10]={10,10,10,2,1,1,1,1,1,2};
int j=1;
for(int i=0;i<size;i++)
{
for(int k=i+1;k<size;k++)
{
if(a[i]==a[k]&&a[i]!=0)
{
a[k]=0;
j++;

}
if(k==(size-1)&& a[i]!=0)
cout<<"Value is: "<<a[i]<<" which is repeated "<<j<<" times"<<endl;
}
j=1;
}
system("pause");
}

Is This Answer Correct ?    8 Yes 0 No

Post New Answer

More C++ General Interview Questions

What is the array and initializing arrays in c++?

0 Answers  


Why do we use classes in programming?

0 Answers  


why and when we can declar member fuction as a private in the class?

0 Answers  


Can c++ be faster than c?

0 Answers  


What is array in c++ example?

0 Answers  


What is a string example?

0 Answers  


Difference between Top down and bottom up approaches for a given project ?

14 Answers   BSNL, CSC, HCL, HP, IIT, Infosys, Siemens,


What happens if a pointer is deleted twice?

0 Answers   Flextronics,


Difference between class and structure.

0 Answers  


If a header file is included twice by mistake in the program, will it give any error?

0 Answers  


Explain the concept of dynamic allocation of memory?

0 Answers  


What is pointer in c++ with example?

0 Answers  


Categories