1 Star 1 Fork 0

周金洪/Krause

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
24.c 739 Bytes
一键复制 编辑 原始数据 按行查看 历史
周金洪 提交于 2022-02-14 22:39 . 旋转数组求最小值
#define _CRT_SECURE_NO_WARNINGS 1
#include<stdio.h>
int minNumberInRotateArray(int* rotateArray, int rotateArrayLen) {
// write code here
int i = 0, j = 99999;
for (i = 0; i < rotateArrayLen-1; i++)
{
if (rotateArray[i] < rotateArray[i + 1])
{
if (j > rotateArray[i])
{
j = rotateArray[i];
}
}
else if (rotateArray[i] > rotateArray[i + 1])
{
if (j > rotateArray[i+1])
{
j = rotateArray[i+1];
}
}
}
return j;
}
int main()
{
int arr[9] = { 5,1,2,3,5,5,5,5,5 };
int i = 0;
i = minNumberInRotateArray(arr, 9);
printf("%d\n", i);
return 0;
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C#
1
https://gitee.com/longyeqiu/krause.git
git@gitee.com:longyeqiu/krause.git
longyeqiu
krause
Krause
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385