gpt4 book ai didi

c - 在字符数组中寻找特定的一对位 '10' 或 '01'

转载 作者:行者123 更新时间:2023-12-05 00:02:34 26 4
gpt4 key购买 nike

这可能是一个稍微理论化的问题。我有一个包含网络数据包的字符字节数组。我想每 66 位检查一次特定的位对(“01”或“10”)的出现。也就是说,一旦我找到了第一对位,我就必须跳过 66 位并再次检查同一对位的存在。我正在尝试使用掩码和轮类来实现一个程序,它有点变得复杂。我想知道是否有人可以提出更好的方法来做同样的事情。

到目前为止,我编写的代码看起来像这样。虽然它并不完整。

test_sync_bits(char *rec, int len)
{
uint8_t target_byte = 0;
int offset = 0;
int save_offset = 0;

uint8_t *pload = (uint8_t*)(rec + 24);
uint8_t seed_mask = 0xc0;
uint8_t seed_shift = 6;
uint8_t value = 0;
uint8_t found_sync = 0;
const uint8_t sync_bit_spacing = 66;

/*hunt for the first '10' or '01' combination.*/
target_byte = *(uint8_t*)(pload + offset);
/*Get all combinations of two bits from target byte.*/
while(seed_shift)
{
value = ((target_byte & seed_mask) >> seed_shift);
if((value == 0x01) || (value == 0x10))
{
save_offset = offset;
found_sync = 1;
break;
}
else
{
seed_mask = (seed_mask >> 2) ;
seed_shift-=2;
}
}
offset = offset + 8;
seed_shift = (seed_shift - 4) > 0 ? (seed_shift - 4) : (seed_shift + 8 - 4);
seed_mask = (seed_mask >> (6 - seed_shift));
}

我想出的另一个想法是使用下面定义的结构
typedef struct
{
int remainder_bits;
int extra_bits;
int extra_byte;
}remainder_bits_extra_bits_map_t;

static remainder_bits_extra_bits_map_t sync_bit_check [] =
{
{6, 4, 0},
{5, 5, 0},
{4, 6, 0},
{3, 7, 0},
{2, 8, 0},
{1, 1, 1},
{0, 2, 1},
};

我的方法正确吗?任何人都可以建议任何改进吗?

最佳答案

查找表的想法

只有 256 个可能的字节。这是足够少的,您可以构建一个查找表,其中包含一个字节中可能发生的所有可能的位组合。

查找表值可以记录模式的位位置,并且它也可以具有标记可能的延续开始或延续结束值的特殊值。

编辑:

我认为延续值会很愚蠢。相反,要检查与字节重叠的模式,请将字节和位中的或从另一个字节移位,或手动检查每个字节的结束位。也许 ((bytes[i] & 0x01) & (bytes[i+1] & 0x80)) == 0x80((bytes[i] & 0x01) & (bytes[i+1] & 0x80)) == 0x01会为你工作。

你没有这么说我也假设你正在寻找第一 匹配任何字节。如果您正在寻找 匹配,然后检查 +66 位的结束模式,这是一个不同的问题。

为了创建查找表,我会编写一个程序来为我做这件事。它可以是您最喜欢的脚本语言,也可以是 C。该程序将编写一个类似于以下内容的文件:

/* each value is the bit position of a possible pattern OR'd with a pattern ID bit. */
/* 0 is no match */
#define P_01 0x00
#define P_10 0x10
const char byte_lookup[256] = {
/* 0: 0000_0000, 0000_0001, 0000_0010, 0000_0011 */
0, 2|P_01, 3|P_01, 3|P_01,
/* 4: 0000_0100, 0000_0101, 0000_0110, 0000_0111, */
4|P_01, 4|P_01, 4|P_01, 4|P_01,
/* 8: 0000_1000, 0000_1001, 0000_1010, 0000_1011, */
5|P_01, 5|P_01, 5|P_01, 5|P_01,
};

乏味。这就是为什么我会编写一个程序来为我编写它。

关于c - 在字符数组中寻找特定的一对位 '10' 或 '01',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7829282/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com