- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
作为 Store 2 4-bit numbers in 1 8 bit number 的后续行动,我想知道是否有一个概括,您可以将 n 个 x 位数字存储到 m 个 y 位数字中。例如,也许您可以将 5 个 8 位数字存储为 3 个 15 位数字。或者可能将 2 个 8 位数字转换为 1 个 16 位数字,或者将 3 个 16 位数字转换为 2 个 32 位数字。想知道执行此操作的过程的编码和解码的实现是什么,或者是否不可能。
类似于:
function encode(i, s1, n, s2) {
// i = array of input bytes
// s1 = size of input bytes
// n = number of output bytes
// s2 = size of output bytes
}
function decode(i, s1, n, s2) {
}
根据下面的答案,我尝试将其翻译为 JavaScript,但不明白任何内容的真正含义,并且认为它不起作用。
function encode(input, inputSize, outputSize, callback) {
var buffer = 0
var bbits = 0
var mask = (1 << outputSize) - 1
while (bbits < outputSize) {
buffer |= (input << bbits)
bbits += inputSize
}
while (bbits >= outputSize) {
callback(buffer & mask)
buffer >>= outputSize
bbits -= outputSize
}
}
最佳答案
您无法将 5 个 8 位数字存储为 3 个 15 位数字,因为 45 位信息显然无法容纳在 40 位内存中。仅当变体总数小于或等于 2k 时才可以执行此操作,其中 k 是用于编码的位数
如果每个值的宽度相同,那么这是我的尝试,它以大端方式线性存储位。编码函数将字节数组中的位转换为另一个数组,该数组将完整值存储在 bitLength
位中,而解码函数则执行相反的操作
function encode(input, bitLength) {
// size of each array element must be greater than bitLength
var output = new Uint16Array(Math.ceil(input.length * 8 / bitLength));
var remainingBits = bitLength; // the remaining bits left for the current value
// example when bitLength = 11
// start of current value
// │ next value
// │2345678901│
// ...┆ ↓ ┆ ↓ ┆ ┆ ┆ ┆... ← input bytes
// ...₀₁₂₃₄₅₆₇⁰¹²³⁴⁵⁶⁷₀₁₂₃₄₅₆₇⁰¹²³⁴⁵⁶⁷₀₁₂₃₄₅₆₇ ... ← bit position
for (var inIdx = 0, outIdx = 0; inIdx < input.length; inIdx++) {
if (remainingBits > 8) {
output[outIdx] = (output[outIdx] << 8) | input[inIdx];
remainingBits -= 8; // 8 less bits to read
} else if (remainingBits == 8) { // finish current value
output[outIdx] = (output[outIdx] << 8) | input[inIdx];
remainingBits = bitLength; // next byte is the start of the next output value
outIdx++;
} else {
var nextRemainingBits = 8 - remainingBits;
output[outIdx] = (output[outIdx] << remainingBits)
| (input[inIdx] >>> nextRemainingBits);
// the leftover bits (nextRemainingBits) in the input byte
// go into the next output
output[++outIdx] = input[inIdx] & ((1 << nextRemainingBits) - 1);
// adjust the number of remaining bits, after we've read
// `8 - remainingBits` bits for the current output
remainingBits = bitLength - nextRemainingBits;
}
}
return output;
}
function decode(input, bitLength) {
const numBits = input.BYTES_PER_ELEMENT*8;
var output = new Uint8Array(Math.ceil(input.length * bitLength / 8));
var remainingInputBits = bitLength; // the remaining bits left for the current value
// shift value to the most significant position
for (var i = 0; i < input.length; i++)
input[i] <<= numBits - bitLength;
for (var inIdx = 0, outIdx = 0; outIdx < output.length; outIdx++) {
if (remainingInputBits > 8) {
output[outIdx] = input[inIdx] >>> (numBits - 8); // get the top byte from input
input[inIdx] <<= 8; // shift the read bits out, leaving next bits on top
remainingInputBits -= 8;
} else if (remainingInputBits == 8) {
output[outIdx] = input[inIdx] >>> (numBits - 8);
remainingInputBits = bitLength;
inIdx++;
} else {
remainingInputBits = 8 - remainingInputBits;
output[outIdx] = input[inIdx] >>> (numBits - 8);
inIdx++;
output[outIdx] |= input[inIdx] >>> (numBits - remainingInputBits);
input[inIdx] <<= remainingInputBits;
remainingInputBits = bitLength - remainingInputBits;
}
}
return output;
}
function pad(s, size) {
s = (s >>> 0).toString(2);
while (s.length < (size || 2)) { s = "0" + s; }
return s;
}
function printBinaryArray(arr, padLength) {
var str = "";
for (var i = 0; i < arr.length; i++)
str += pad(arr[i], padLength) + " ";
console.log(str);
}
var inputBytes = 22;
var bitLength = 11; // each value is 11-bit long
var input = new Uint8Array(inputBytes);
window.crypto.getRandomValues(input);
var encodedData = encode(input, bitLength);
console.log("Input data", input);
printBinaryArray(input, 8);
console.log("Encoded data");
// console.log(encodedData);
printBinaryArray(encodedData, bitLength);
var decodedData = decode(encodedData, bitLength);
console.log("Decoded data", decodedData);
printBinaryArray(decodedData, 8);
for (var i = 0; i < input.length; i++)
if (input[i] != decodedData[i])
console.log("Wrong decoded data");
console.log("Data decoded successfully");
实际上编码和解码的过程只是互逆的,所以你可以很容易地将它们修改为 encode(input, inputBitWidth, outputBitWidth)
,既可以用于编码也可以用于解码,只需交换输入和输出宽度
但是,对于奇数大小的值,通常最好将高位打包在一起以便于访问。例如,10 位像素格式通常将 4 个像素打包到一个 5 字节组中,每个像素的 8 个高位位于前 4 个字节中,最后一个字节包含它们的 2 个低位
另请参阅
关于encoding - 如何将整数编码为其他整数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51227279/
我正在尝试学习 Fortran,并且看到了很多不同的定义,我想知道他们是否正在尝试完成同样的事情。以下有什么区别? 整数*4 整数(4) 整数(kind=4) 最佳答案 在 Fortran >=90
我以前从未编程过,最近(1 周前)才开始学习!第一门类(class)是函数式编程,使用 Haskell。 我有一项学校作业,我想通过删除一两个步骤来改进它,但我遇到了一个讨厌的错误。 基本上,我创建了
给定以下GraphQL请求和变量: 请求: query accounts($filter:AccountFilter, $first_:String, $skip_:Int) { accounts
我已经搜索了 StackOverflow,但找不到关于如何检查计算器应用程序的数字输入正则表达式的答案,该计算器应用程序将检查每个 keyup 的以下格式(jquery key up): 任何整数,例
类似于我上一篇致歉的文章,但没有那么长篇大论。基本上我想知道当每次重绘调用只重绘屏幕的一小部分时,优化重绘到 JFrame/JPanel 的最佳选择是什么。 此外,除了重绘重载之外,我并不是 100%
所以在我的教科书中有一个使用 f# 的递归函数的例子 let rec gcd = function | (0,n) -> n | (m,n) -> gcd(n % m,m);; 使用此功能,我的教科书
我有一个数据结构,例如表达式树或图形。我想添加一些“测量”功能,例如depth和 size . 如何最好地键入这些函数? 我认为以下三个变体的用处大致相同: depth :: Expr -> Int
这样写比较好 int primitive1 = 3, primitive2 = 4; Integer a = new Integer(primitive1); Integer b = new Inte
我是 Java 8 新手,想根据键对 Map 进行排序,然后在值内对每个列表进行排序。 我试图寻找一种 Java 8 方法来对键和值进行排序。HashMap>映射 map.entrySet().str
这就是我的目标... vector ,int> > var_name (x, pair (y),int>); 其中 x 是 vector var_name 的大小,y 是对内 vector 的大小。
这里是 an answer to "How do I instantiate a Queue object in java?" , Queue is an interface. You can't i
这个问题在这里已经有了答案: Weird Integer boxing in Java (12 个答案) Why are autoboxed Integers and .getClass() val
我们可以使用 C++ STL 做这样的事情吗?如果是,我将如何初始化元素?我试图这样做,但没有成功。 pair,vector>p; p.first[0]=2; 最佳答案 Can we do som
您好,我正在尝试为百分比和整数数组中的数字找到索引。假设 arraynum = ['10%','250','20%','500'] 并且用户发送一个值 15%,这个数字在哪个范围内居住?我可以使用这段
我与三列有关系:ProductName、CategoryID 和 Price。我需要选择仅那些价格高于给定类别中平均产品价格的产品。(例如,当apple(ProductName)是fruit(Cate
我已经坚持了一段时间,我正在尝试将一些数据配对在一起。这是我的代码。 #include #include using namespace std; int main() { pair data(
我收到错误:'(Int, Int)' 与 'CGPoint' 不相同 如何将 (Int, Int) 转换为 CGPoint let zigzag = [(100,100), (100,150)
我在 .cpp 文件中发现了以下代码。我不理解涉及头文件的构造或语法。我确实认识到这些特定的头文件与 Android NDK 相关。但是,我认为这个问题是关于 C++ 语法的一般问题。这些在某种程度上
我将这些输入到 Scala 解释器中: val a : Integer = 1; val b : Integer = a + 1; 我收到消息: :5: error: type mismatch;
C++:vector>v(size);当我试图打印出值时显示 0 作为值,但是当未声明 vector 大小时它显示正确的输出?为什么这样?例如: int x; cin>>x; vector>v(x);
我是一名优秀的程序员,十分优秀!