夜奏花
夜奏花
全部文章
分类
题解(3)
归档
标签
去牛客网
登录
/
注册
夜奏花的博客
全部文章
(共5篇)
题解 | #输出二叉树的右视图#
class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 &...
2022-07-10
0
273
题解 | #删除链表的倒数第n个节点#
/** * struct ListNode { * int val; * struct ListNode *next; * }; */ class Solut...
2022-07-09
0
349
题解 | #Day of Week#
法一:硬算 暴力 #include <bits/stdc++.h> using namespace std; int day[13]={0,31,28,31,30,31,30,31,31,30,31,30,31}; string mmon[13]={"","January","Febr...
C++
2022-06-22
1
403
题解 | #日期差值#
#include <bits/stdc++.h> using namespace std; int day[13]={0,31,28,31,30,31,30,31,31,30,31,30,31}; int leap(int year){ if((year%4==0 &&...
C++
2022-06-22
4
540
Old Bill问题解决
#include <bits/stdc++.h> using namespace std; int main(){ int n,x,y,z,sum,flag=0; while(cin>>n){ cin>>x>>y>>z; fl...
C++
2022-06-20
1
388