forked from shikharkohli/c---files
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnextpalin.cpp
executable file
·87 lines (80 loc) · 980 Bytes
/
nextpalin.cpp
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
#include<iostream>
#include<cstring>
#define MAX 1000000
using namespace std;
int palin(int arr[])
{
int start = 0;
for(int i=0;i<MAX;i++)
{
if(arr[i]!=0)
{
start = i;
break;
}
}
int i = start,j= MAX-1;
while(i<=j)
{
if(arr[i]!=arr[j])
return 0;
i++;
j--;
}
return 1;
}
void nextpalin(int arr[])
{
do
{
arr[MAX-1] += 1;
int j = MAX-1;
while(arr[j]>=10)
{
if(arr[j] >= 10)
{
arr[j-1] += arr[j]/10;
arr[j]%=10;
}
j--;
}
int start = 0;
}while(!palin(arr));
}
int main()
{
int arr[MAX];
char str[MAX];
int k;
cin>>k;
int i = 0;
while(i<k)
{
cin>>str;
int len = strlen(str);
int j=0;
while(j<MAX)
{
arr[j] = 0;
j++;
}
j=0;
while(j<strlen(str))
{
arr[MAX-1-j] = str[strlen(str)-1-j] - '0';
j++;
}
int start = 0;
nextpalin(arr);
start = 0;
for(int x = 0;x<MAX;x++)
{
if(arr[x] != 0)
start = 1;
if(start)
cout<<arr[x];
}
i++;
}
return 0;
}