Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


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

Is arr and &arr are same expression for an array?

0 Answers  


Explain how to initialize a const data member.

0 Answers  


What are the basics of classifying different storage types, why?

2 Answers   Astergate, Symphony,


How do you differentiate between overloading the prefix and postfix increments?

0 Answers  


what is COPY CONSTRUCTOR and what is it used for?

0 Answers  


Should a constructor be public or private?

0 Answers  


What is ostream in c++?

0 Answers  


What is different in C++, compare with unix?

0 Answers  


What is the purpose of templates in c++?

0 Answers  


What is endl?

0 Answers  


What is null c++?

0 Answers  


Do you know what are static and dynamic type checking?

0 Answers  


Categories