-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathNon-restoring_division.cpp
187 lines (154 loc) · 3 KB
/
Non-restoring_division.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
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
/* C Program For Implementation Of Non - Restoring Division */
#include <bits/stdc++.h>
int a[5] = {0, 0, 0, 0, 0}, q[4], b[5], b2c[5];
void comp();
void nonresdiv();
void shiftleft();
void a_minus_b();
void a_plus_b();
int main()
{
printf("Enter dividend in binary form: ");
for (int i = 0; i < 4; i++)
{
scanf("%d", &q[i]);
}
printf("Enter divisor in binary form: ");
for (int i = 0; i < 5; i++)
{
scanf("%d", &b[i]);
}
comp();
printf("\n\t[A]\t[M]\n");
for (int i = 0; i < 4; i++)
{
nonresdiv();
printf("\t");
for (int j = 0; j < 5; j++)
{
printf("%d", a[j]);
}
printf("\t");
for (int k = 0; k < 4; k++)
{
printf("%d", q[k]);
}
printf("\n");
}
if (a[0] == 1)
{
a_plus_b();
}
printf("\t");
for (int j = 0; j < 5; j++)
{
printf("%d", a[j]);
}
printf("\t");
for (int k = 0; k < 4; k++)
{
printf("%d", q[k]);
}
printf("\n");
printf("\n\tThe Quotient is:\t");
for (int k = 0; k < 4; k++)
{
printf("%d", q[k]);
}
printf("\n\tThe Remainder is:\t");
for (int j = 0; j < 5; j++)
{
printf("%d", a[j]);
}
return 0;
}
void comp()
{
int i = 4;
do
{
b2c[i] = b[i];
i--;
} while (b[i + 1] != 1);
while (i >= 0)
{
b2c[i] = (b[i] + 1) % 2;
i--;
}
printf("\n\tB's complement:");
for (i = 0; i < 5; i++)
printf("%d", b2c[i]);
printf("\n");
}
void nonresdiv()
{
shiftleft();
if (a[0] == 0)
a_minus_b();
else
a_plus_b();
q[3] = (a[0] + 1) % 2;
}
void shiftleft()
{
int i;
for (i = 0; i < 4; i++)
a[i] = a[i + 1];
a[4] = q[0];
for (i = 0; i < 3; i++)
q[i] = q[i + 1];
}
void a_minus_b()
{
int i, carry = 0, sum = 0;
for (i = 4; i >= 0; i--)
{
sum = (a[i] + b2c[i] + carry);
a[i] = sum % 2;
carry = sum / 2;
}
}
void a_plus_b()
{
int i, carry = 0, sum = 0;
for (i = 4; i >= 0; i--)
{
sum = (a[i] + b[i] + carry);
a[i] = sum % 2;
carry = sum / 2;
}
}
/********************** OUTPUT ****************/
// Enter dividend in binary form : 0 1 0 1
// Enter divisor in binary form : 0 0 0 1 1
// B's complement:11101
// [A] [M]
// 11101 1010
// 11110 0100
// 11111 1000
// 00010 0001
// 00010 0001
// The Quotient Is : 0001
// The Remainder Is : 00010
// Enter dividend in binary form : 1 1 1 1
// Enter divisor in binary form : 0 0 1 1 1
// B's complement:11001
// [A] [M]
// 11010 1110
// 11100 1100
// 00000 1001
// 11010 0010
// 00001 0010
// The Quotient Is : 0010
// The Remainder Is : 00001
// Enter dividend in binary form : 1 1 0 1
// Enter divisor in binary form : 0 0 0 1 1
// B's complement:11101
// [A] [M]
// 11110 1010
// 00000 0101
// 11101 1010
// 11110 0100
// 00001 0100
// The Quotient Is : 0100
// The Remainder Is : 00001