天纵奇才Poplar
天纵奇才Poplar
全部文章
题解
归档
标签
去牛客网
登录
/
注册
天纵奇才Poplar的博客
全部文章
/ 题解
(共4篇)
题解 | #链表的回文结构# 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