标签: c ansi hoare-logic
有人可以解释如何使用Hoare Triple验证此代码吗?
while (tmp != NULL) { if (min->valore > tmp->valore) min = tmp; tmp = tmp->succ_p; }