当前位置:   article > 正文

编写C函数,判断链表是否是递增排列_设计一个算法,判断顺序表l中所有元素是否是递增有序的用c语言

设计一个算法,判断顺序表l中所有元素是否是递增有序的用c语言

有这样一个结构体:

  1. struct node{
  2. int data;
  3. struct node *next;
  4. }

编写一个C函数,来判断这段链表中data的值是否是递增排列的,代码如下:

  1. void func(ListNode *head)
  2. {
  3. while(head->next != NULL)
  4. {
  5. if(head->data < head->next->data)
  6. head = head->next;
  7. else
  8. {
  9. printf("List is not in ascending order!\n");
  10. return 0;
  11. }
  12. }
  13. }


声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/繁依Fanyi0/article/detail/829328
推荐阅读
相关标签
  

闽ICP备14008679号