-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsparse.cpp
More file actions
216 lines (196 loc) · 3.2 KB
/
Copy pathsparse.cpp
File metadata and controls
216 lines (196 loc) · 3.2 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
#include<iostream>
#include<cstdio>
using namespace std;
void Set(int a[],int i)
{
cin>>a[i];
}
int Get(int a[],int i)
{
return(a[i]);
}
void Lower(int s)
{
int a[20],i,k=0,j=0,n;
char ch;
do{
//set()
n=(s*(s+1))/2;
cout<<"\n Enter "<<n<<" lower elements of matrix";
for(i=0;i<n;i++)
{
cout<<"Enter Element at ["<<j<<"]["<<k<<"] : ";
if(j==k)
{
j++;
k=0;
}
else
{
k++;
}
Set(a,i);
}
//get()
cout<<"Enter the indices to print the element :";
cin>>i>>j;
if(i<0||i>=s||j<0||j>=s)
{
cout<<"Error 404";
}
else if(i>=j)
{
n=((i*(i+1)/2)+j);
cout<<Get(a,n);
}
else
{
cout<<"0";
}
cout<<"\n Want to run Lower Function Again?(y/n) :";
cin>>ch;
}while(ch=='y'||ch=='Y');
}
void Symmetric(int s)
{
int a[20],i,k=0,j=0,n,t;
char ch;
//set()
n=(s*(s+1))/2;
cout<<"\n Enter "<<n<<" Symmetric elements of matrix";
for(i=0;i<n;i++)
{
cout<<"\nEnter Element at ["<<j<<"]["<<k<<"] : ";
if(j==k)
{
j++;
k=0;
}
else
{
k++;
}
Set(a,i);
}
do{
//get()
cout<<"Enter the indices to print the element :";
cin>>i>>j;
if(i<0||i>=s||j<0||j>=s)
{
cout<<"Error 404";
}
else if(i>=j)
{
n=((i*(i+1)/2)+j);
cout<<Get(a,n);
}
else
{
t=i;
i=j;
j=t;
n=((i*(i+1)/2)+j);
cout<<Get(a,n);
}
cout<<"\n Want to run Lower Function Again?(y/n) :";
cin>>ch;
}while(ch=='y'||ch=='Y');
}
void Upper(int s)
{
int a[20],i,k=0,j=0,n;
char ch;
//set()
n=(s*(s+1))/2;
cout<<"\n Enter "<<n<<" Upper Elements of matrix";
for(i=0;i<n;i++)
{
cout<<"\nEnter Element at ["<<j<<"]["<<k<<"] : ";
if(k==s-1)
{
j++;
k=j;
}
else
{
k++;
}
Set(a,i);
}
do{
//get()
cout<<"Enter the indices to print the element :";
cin>>i>>j;
if(i<0||i>=s||j<0||j>=s)
{
cout<<"Error 404";
}
else if(i<=j)
{
n=( ((s*(s+1))/2) - (((s-i)*(s-1+1))/2) + (j-i) );
cout<<Get(a,n);
}
else
{
cout<<"0";
}
cout<<"\n Want to run Upper Function Again?(y/n) :";
cin>>ch;
}while(ch=='y'||ch=='Y');
}
void Diagonal(int s)
{
int a[20],i,j;
char ch;
do{
//set()
for(i=0;i<s;i++)
{
cout<<"\nEnter Element at ["<<i<<"]["<<i<<"] : ";
Set(a,i);
}
//get()
cout<<"\n Enter the indices you want to print :";
cin>>i>>j;
if(i<0||i>=s||j<0||j>=s)
{
cout<<"Error 404";
}
else if(i==j)
{
cout<<Get(a,i);
}
else
{
cout<<"0";
}
cout<<"\n Do You want to goto Diagonal function again?(y/n) :";
cin>>ch;
}while(ch=='y'||ch=='Y');
}
int main()
{
char c,ch;
int S;
do{
cout<<"\n Enter the size of the Matrix :";
cin>>S;
cout<<"\n1. Diagnal Matrix";
cout<<"\n2. Lower Triangle";
cout<<"\n3. Upper Triangle";
cout<<"\n4. Symmetric Matrix";
cout<<"\n5. Exit";
cout<<"\n Enter Your Choice";
cin>>c;
switch(c)
{
case '1': Diagonal(S); break;
case '2': Lower(S); break;
case '3': Upper(S); break;
case '4': Symmetric(S); break;
case '5': break;
default: cout<<"Wrong Choice";
}
}while(c=='y'||c=='Y');
}