#include using namespace std; void deleteRepeats (char[], int&); int main() { char alpha[10]; alpha[0]= 'n'; alpha[1] = 't'; alpha[2] = 't'; alpha[3]= 'a'; alpha[4] 'd'; alpha [5] = 'n'; alpha[6] = 'c'; alpha[7] = 'c'; alpha[8] = 'a'; Copy the main code and complete delete Repeats function int size= 9; deleteRepeats (alpha, size); cout << "After deleting repeat" << endl; for (int i = 0; i < size; ++i) cout << alpha[i] << endl; return 0;
Use C++
![#include <iostream>
using namespace std;
void deleteRepeats (char[], int&);
int main()
}
char alpha[10];
alpha [0] = 'm';
alpha[1] = 't¹;
alpha [2] = 't';
alpha [3]
alpha [4]
alpha [5] = 'm';
'a';
'd';
alpha [6] = 'c';
alpha [7] = 'c';
alpha [8] = 'a';
Copy the main code and complete delete Repeats function.
int size = 9;
deleteRepeats (alpha, size);
cout << "After deleting repeat" << endl;
for (int i = 0; i < size; ++i)
cout << alpha[1] << endl;
return 0;
CSOLARS](/v2/_next/image?url=https%3A%2F%2Fcontent.bartleby.com%2Fqna-images%2Fquestion%2Fcdbdf4c8-5459-45de-99f8-cd8d71031beb%2Fe2ecc6df-8a4a-48a6-9da4-ddee617a48e7%2Fl57kype_processed.jpeg&w=3840&q=75)
![Problem 2.
Write a function called deleteRepeats that has a partially filled array of
characters as a formal parameter and that deletes all repeated letters
from the array.
void deleteRepeats (char A[], int& size)
↑
Size of array A
Problem 2.
char alpha[10];
alpha [0] = 'a';
alpha[1] = 'b';
alpha [2] = 'c'; After deleting repeat
alpha[3] = 'a';
alpha[4] = 'd';
alpha [5] = 'a';
alpha[6] = 'c';
alpha [7] = 'e';
int size= 8;
HALUTE
a
C
e
CS 003 LABS
char alpha[10];
alpha [0] = 'm'
alpha [1] = 't'
alpha [2] = 't'
alpha [3] = 'a'
alpha [4] = 'd'
alpha [5] = 'm'
alpha [6] = 'c'
alpha [7] = 'c';
alpha [8] = 'a';
int size= 9;
After deleting repeat
m
t](/v2/_next/image?url=https%3A%2F%2Fcontent.bartleby.com%2Fqna-images%2Fquestion%2Fcdbdf4c8-5459-45de-99f8-cd8d71031beb%2Fe2ecc6df-8a4a-48a6-9da4-ddee617a48e7%2Fuw38le_processed.jpeg&w=3840&q=75)

code-
#include <iostream>
#include <bits/stdc++.h>
using namespace std;
void deleteRepeats(char alpha[],int size){
int k=0;char alpha2[10];int j=0;int i=0;
for ( i = 0; i < size; i++)
{
for ( j = 0; j < k; j++)
{
if (alpha[i] == alpha2[j])
break;
}
if (j == k)
{
alpha2[k] = alpha[i];
k++;
}
}
cout << "After deletion repeat "<<endl;
for (i = 0; i < k; i++)
{ cout << alpha2[i] << endl;}
}
int main()
{
char alpha[10];
alpha[0]='m';
alpha[1]='t';
alpha[2]='t';
alpha[3]='a';
alpha[4]='d';
alpha[5]='m';
alpha[6]='c';
alpha[7]='c';
alpha[8]='a';
int size=9;
deleteRepeats(alpha,size);
}
Step by step
Solved in 2 steps with 1 images









