freedom·
freedom·
全部文章
分类
题解(4)
归档
标签
去牛客网
登录
/
注册
freedom·的博客
全部文章
(共4篇)
题解 | #反转链表#笨蛋方法
struct ListNode* ReverseList(struct ListNode* pHead ) { // write code here if(!pHead) return pHead; struct ListNode *p,*x; str...
C
2022-06-09
1
375
题解 | #[NOIP2008]ISBN号码#
大家凑合看看吧 #include <stdio.h> char sum(int word,int pub,int num); int main() { int word,pub,num; char code; scanf("%d-%d-%d-%c",&wo...
C
2022-06-05
0
322
题解 | #兔子的序列#
这个是用递归写的,大家看看吧! #include <stdio.h> void douhao(int n); int main() { int n; scanf("%d",&n); douhao(n); return 0; } void douha...
C
2022-06-02
25
695
题解 | #兔子的序列#
#include <math.h> int panduan(int n); int main() { int n; int max=0; scanf("%d",&n); int a[n]; for(int i=0;i<n;i++) ...
C
2022-05-29
0
355