天纵奇才Poplar
天纵奇才Poplar
全部文章
分类
题解(4)
归档
标签
去牛客网
登录
/
注册
天纵奇才Poplar的博客
全部文章
(共8篇)
题解 | #字符串最后一个单词的长度#
#include <iostream> using namespace std; int main() { string s; size_t i = 0; getline(cin, s); // 这里需要使用getline进行有空格或换行的字符串输入,cin遇到空...
2023-01-13
0
264
题解 | #打印日期#
#include <iostream> using namespace std; //这是第N个月的总天数 int Days[13] = {0,31,59,90,120,151,181,212,243,273,304,334,365}; bool IsLeapYear(int _ye...
2022-12-27
0
283
题解 | #计算日期到天数转换#
#include <iostream> using namespace std; int Date[13] = {0,31,59,90,120,151,181,212,243,273,304,334,365}; bool IsLeapYear(int _year) { if ...
2022-12-27
0
272
题解 | #求1+2+3+...+n#
class Solution { public: static int sum; static int x; Solution() { sum += x; ++x; } int Sum_Solution(i...
2022-12-27
0
218
题解 | #链表的回文结构# c - 不带哨兵卫
struct ListNode { int val; struct ListNode *next; ListNode(int x) : val(x), next(NULL) {} };*/ //大体思路,第一步:先求出中间节点(偶数个节点则为第二个); //第二步:把后半段链...
C++
2022-05-19
0
325
题解 | #链表分割# - C - 哨兵卫 + 尾插新链表
struct ListNode { int val; struct ListNode *next; ListNode(int x) : val(x), next(NULL) {} };*/ class Partition { public: ListNode* par...
C++
C
2022-05-19
3
379
题解 | #判断两个数的大小关系#
#include <stdio.h> void get_relation(int n1, int n2); int main() { int n1, n2 = 0; while ((scanf("%d %d", ...
C
2021-12-14
2
498
题解 | #判断两个数的大小关系#
#include <stdio.h> void get_relation(int n1, int n2); int main() { int n1, n2 = 0; while ((scanf("%d %d", &n1, &n2)) != EOF) //scanf错误会...
C
2021-12-14
0
345