-
Notifications
You must be signed in to change notification settings - Fork 0
/
CTDL008.cpp
59 lines (54 loc) · 1.42 KB
/
CTDL008.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
#include <bits/stdc++.h>
using namespace std;
/* ??? Runtime Error
void gray(vector<char> &binary){
queue<char> temp;
temp.push(binary[0]);
for (int i = 1; i < binary.size(); i++){
if (binary[i-1] == binary[i]){
temp.push('0');
}else{
temp.push('1');
}
}
while(!temp.empty()){
cout<<temp.front();
temp.pop();
}
}
int main(){
int t; cin >> t;
while(t--){
string s; cin >> s;
vector<char> binary;
for (int i = 0; i < s.size(); i++){
binary.push_back(s[i]);
}
gray(binary);
cout<<endl;
}
}
*/
void gray(string s){ // chuyển đổi nhị phân sang gray bằng cách dùng phép toán thao tác bit XOR
queue<char> temp;
temp.push(s[0]); // kí tự đầu tiên khi chuyển từ nhị phân sang mã gray luôn giống nhau
for (int i = 1; i < s.size(); i++){ // xét lần lượt các kí tự sau kí tự đầu tiên, giống nhau thì = 0 khác nhau thì = 1, cho vào queue và in ra, đó chính là mã gray
if (s[i-1] == s[i]){
temp.push('0');
}else{
temp.push('1');
}
}
while(!temp.empty()){
cout<<temp.front();
temp.pop();
}
}
int main(){
int t; cin >> t;
while(t--){
string s; cin >> s;
gray(s);
cout<<endl;
}
}