LeetCode每日一题(1734. 解码异或后的排列)
Posted XiaoFanMi
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode每日一题(1734. 解码异或后的排列)相关的知识,希望对你有一定的参考价值。
直接上图
思路
代码
class Solution {
public int[] decode(int[] encoded) {
int n = encoded.length;
int[] decode = new int[n + 1];
//求1到n+1的所有数异或
int all = 0;
for (int i = 0; i <= n + 1; i++) {
all ^= i;
}
//求编码后的索引为奇数位的异或
int odd = encoded[1];
for (int j = 3; j < n; j += 2) {
odd ^= encoded[j];
}
//求编码前的第一位数
int first = odd ^ all;
decode[0] = first;
//遍历求出其他的编码前的数
for (int z = 0; z < n; z++) {
decode[z + 1] = decode[z] ^ encoded[z];
}
return decode;
}
}
以上是关于LeetCode每日一题(1734. 解码异或后的排列)的主要内容,如果未能解决你的问题,请参考以下文章
LeetCode1734. 解码异或后的排列 / 剑指 Offer 36. 二叉搜索树与双向链表 / 剑指 Offer 37. 序列化二叉树