gpt4 book ai didi

java - 为什么我的函数没有给出正确的输出?

转载 作者:塔克拉玛干 更新时间:2023-11-03 04:17:08 25 4
gpt4 key购买 nike

我的函数使用递归检查数组是否已排序。不幸的是,它为每个数组返回 false

Function call : sorted(a,0,a.length) where a[] = {1,2,3}; 

boolean sorted(int[] a , int s , int n)
{
if(s+1==n)
return true ;
if(a[s]<=a[s+1])
sorted(a,s+1,n);
return false ;
}

最佳答案

您忽略了对 sorted 的递归调用的结果。只需返回它,您应该没问题:

boolean sorted(int[] a , int s , int n)
{
if(s+1==n)
return true ;
if(a[s]<=a[s+1])
return sorted(a,s+1,n); // Here!
return false ;
}

关于java - 为什么我的函数没有给出正确的输出?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50408304/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com