-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathArrange Consonants and Vowels
More file actions
110 lines (97 loc) · 1.75 KB
/
Arrange Consonants and Vowels
File metadata and controls
110 lines (97 loc) · 1.75 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
// { Driver Code Starts
#include<bits/stdc++.h>
using namespace std;
struct Node
{
char data;
struct Node *next;
Node(int x){
data = x;
next = NULL;
}
};
void printlist(Node *head)
{
if (head==NULL)return;
while (head != NULL)
{
cout << head->data << " ";
head = head->next;
}
cout << endl;
}
void append(struct Node** headRef, char data)
{
struct Node* new_node = new Node(data);
struct Node *last = *headRef;
if (*headRef == NULL)
{
*headRef = new_node;
return;
}
while (last->next != NULL)
last = last->next;
last->next = new_node;
return;
}
// task is to complete this function
struct Node* arrange(Node *head);
int main()
{
int T;
cin>>T;
while(T--){
int n;
char tmp;
struct Node *head = NULL;
cin>>n;
while(n--){
cin>>tmp;
append(&head, tmp);
}
head = arrange(head);
printlist(head);
}
return 0;
}
// } Driver Code Ends
/*
Structure of the node of the linked list is as
struct Node
{
char data;
struct Node *next;
Node(int x){
data = x;
next = NULL;
}
};
*/
// task is to complete this function
// function should return head to the list after making
// necessary arrangements
struct Node* arrange(Node *temp)
{
//Code here
vector<char> vow,con;
Node *head =temp;
while(head!=NULL){
if(head->data=='a' || head->data=='i' || head->data=='e'|| head->data=='o' || head->data == 'u'){
vow.push_back(head->data);
}
else{
con.push_back(head->data);
}
head=head->next;
}
Node* abc =temp;
for(auto e:vow){
abc->data = e;
abc=abc->next;
}
for(auto e:con){
abc->data=e;
abc=abc->next;
}
return temp;
}