未央纤纤尘
未央纤纤尘
全部文章
分类
题解(6)
归档
标签
去牛客网
登录
/
注册
未央纤纤尘的博客
全部文章
(共6篇)
题解 | #数字在升序数组中出现的次数#
就这样 /** * * @param data int整型一维数组 * @param dataLen int data数组长度 * @param k int整型 * @return int整型 * * C语言声明定义全局变量请加上static,防止重复定义 */ int Get...
C
2022-03-18
1
308
题解 | #排序#
就这样 /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * 将给定数组排序 * @param arr int整型一维数组 待排序的数组 * @param arrLen int arr数组长度 * @return int整型一维数组 * @return...
C
2022-03-16
1
258
题解 | #斐波那契数列#
就这样 /** * * @param n int整型 * @return int整型 * * C语言声明定义全局变量请加上static,防止重复定义 */ int Fibonacci(int n ) { // write code here int a[50]; ...
C
2022-03-16
3
287
题解 | #反转数字#
就这样 /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * @param x int整型 * @return int整型 * * C语言声明定义全局变量请加上static,防止重复定义 */ int reverse(int x ) { ...
C
2022-03-15
1
347
题解 | #牛牛的排序#
就这样 #include<stdio.h> int main() { int n,a[100000],b;//定义变量 scanf("%d",&n); for(int q=0;q<n;q++) scanf("%d",&a[q]...
C
2022-03-15
2
382
题解 | #牛牛的时钟#
就这样 #include<stdio.h> int main() { int n, a,b=0; scanf("%d",&n); for(int i=0;i<n;i++) { scanf("%d",&a); ...
C
2022-03-15
13
339