アルゴリズム10-Find配列の最小整数
2138 ワード
Q.
Given an array of integers your solution should find the smallest integer.
For example:
Given [34, 15, 88, 2] your solution will return 2
Given [34, -345, -1, 100] your solution will return -345
You can assume, for the purpose of this kata, that the supplied array will not be empty.
A) #include <stddef.h>
int find_smallest_int(int *vec, size_t len) {
int min = 2147483647;
size_t i = 0;
while (i < len)
{
if (vec[i] <= min)
min = vec[i];
i++;
}
return (min);
}
Reference
この問題について(アルゴリズム10-Find配列の最小整数), 我々は、より多くの情報をここで見つけました
https://velog.io/@pearpearb/알고리즘-10-Find-the-smallest-integer-in-the-array
テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol
#include <stddef.h>
int find_smallest_int(int *vec, size_t len) {
int min = 2147483647;
size_t i = 0;
while (i < len)
{
if (vec[i] <= min)
min = vec[i];
i++;
}
return (min);
}
Reference
この問題について(アルゴリズム10-Find配列の最小整数), 我々は、より多くの情報をここで見つけました https://velog.io/@pearpearb/알고리즘-10-Find-the-smallest-integer-in-the-arrayテキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol