如何在C中显示输出时获取链表索引?

发布于 2024-12-16 11:17:36 字数 233 浏览 0 评论 0原文

opencv中是否可以在结果输出之前放置一个链表索引? 例如,我

for( ; i!= 0; i= i->h_next )
    {
    printf("Index number = %d   Area = %.2f \n",n, area); 
    }

现在有代码,我的问题是,如何打印这个索引号?由于 i 的值不在 1,2,3 等范围内。

Is it possible to place a linked list index before the output of result in opencv?
For example, I have code

for( ; i!= 0; i= i->h_next )
    {
    printf("Index number = %d   Area = %.2f \n",n, area); 
    }

Now, my question is, how to print this index number? As the values of i are not in 1,2,3 and so on..

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

孤独患者 2024-12-23 11:17:36

也许尝试:

int cnt = 0;
for ( .. ) {
    printf("%d\n", cnt++);
}

Maybe try:

int cnt = 0;
for ( .. ) {
    printf("%d\n", cnt++);
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文