606060
606060
全部文章
分类
归档
标签
去牛客网
登录
/
注册
606060的博客
全部文章
(共7篇)
题解 | #点菜问题#
#include <iostream> #include <iterator> using namespace std; struct f { int m;//每道菜的价格 int y;//每道菜的营养 }; int main() { int C,...
2023-03-29
0
339
题解 | #链表的回文结构#
/* struct ListNode { int val; struct ListNode *next; ListNode(int x) : val(x), next(NULL) {} };*/ class PalindromeList { public: bool ...
2023-03-11
0
237
题解 | #二叉树遍历#
#include <iostream> #include <istream> #include<string.h> using namespace std; typedef struct bitree { char data; struct b...
2023-03-06
0
220
题解 | #二叉树遍历#
#include <iostream> #include <stdio.h> #include <string.h> #include <stdlib.h> using namespace std; typedef struct bitree { ...
2023-03-05
0
233
题解 | #最大序列和#
#include <iostream> using namespace std; float a[1000010]; float a1[1000010]; int main() { int n; while(cin>>n) { for(in...
2023-03-03
0
237
题解 | #N阶楼梯上楼问题#
#include <iostream> using namespace std; int ans(int n) { if(n==1) { return 1; } else if(n==2) { return 2; ...
2023-03-03
0
193
题解 | #对称平方数1#
#include <iostream> using namespace std; int main() { int i=0; while(i<=256) { int m = i*i; int x =0; in...
2023-02-26
0
248