Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,890 questions

51,817 answers

573 users

How to print all elements of an array only once in C++

1 Answer

0 votes
#include <bits/stdc++.h> 
  
void printElementsOnlyOnce(int arr[], int len) { 
    std::sort(arr, arr + len); 

    for (int i=0; i < len; i++) {
       while (i < len - 1 && arr[i] == arr[i+1]) 
          i++; 
       std::cout << arr[i] << " "; 
    } 
} 
   
int main() {
    int arr[] = {3, 5, 9, 1, 7, 8, 1, 9, 0, 3, 9, 9, 5, 5, 5};   
         
    printElementsOnlyOnce(arr, sizeof(arr)/sizeof(arr[0]));
}
  
  
  
/*
run:
  
0 1 3 5 7 8 9 
  
*/

 



answered May 4, 2020 by avibootz

Related questions

1 answer 133 views
1 answer 152 views
1 answer 139 views
1 answer 132 views
1 answer 164 views
1 answer 153 views
1 answer 86 views
...