我试图反过来循环遍历一个struct
数组,不太确定如何去做。这就是我正常循环的方式:
struct Thing* ptr = things;
struct Thing* endPtr = things + sizeof(things)/sizeof(things[0]);
for(ptr < endPtr)
{
// do stuff
}
答案 0 :(得分:2)
假设N >= 0
,你的things
序列的项目大小,当然可以使用索引,但实际上你只需要一个指针:
struct Thing *ptr = things + N;
while (ptr != things)
{
--ptr;
// do something with *ptr;
}
答案 1 :(得分:0)
这可能是一种可能的解决方案
Pattern p5 = Pattern.compile("^(..)*$");
答案 2 :(得分:0)
可以在向下计数循环中使用指针,但我会优先考虑可读性:
size_t size = sizeof(things) / sizeof(things[0]);
for(size_t i=0; i<size; i++)
{
size_t index = size - i - 1;
things[index] = something;
}