如何在C中显示输出时获取链表索引?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
也许尝试:
Maybe try: