牛客368378559号
牛客368378559号
全部文章
分类
题解(6)
归档
标签
去牛客网
登录
/
注册
牛客368378559号的博客
全部文章
(共6篇)
题解 | #验证年龄#
import java.util.Scanner; public class Main { public static void main(String[] args) { Person p = new Person(); Scanner scanner = new Scanner(...
Java
2022-05-03
0
280
题解 | #数字颠倒#
#include<stdio.h> #include<string.h> int main() { int n; char ch; while(scanf("%d",&n)!=EOF) { if(n) { while(n!=0) { ch = n%10+'0'; pr...
C
2022-01-16
0
277
题解 | #链表的回文结构#
/* struct ListNode { int val; struct ListNode next; ListNode(int x) : val(x), next(NULL) {} };/ struct ListNode* middleNode(struct ListNode* head) { s...
C++
C
2022-01-15
1
468
题解 | #链表分割#
/* struct ListNode { int val; struct ListNode next; ListNode(int x) : val(x), next(NULL) {} };/ class Partition { public: ListNode* partition(ListNode...
C++
C
2022-01-15
1
490
题解 | #合并两个排序的链表#
/** struct ListNode { int val; struct ListNode *next; }; C语言声明定义全局变量请加上static,防止重复定义 */ /** * @param pHead1 ListNode类 @param pHead2 ListNode类 @ret...
C
2022-01-13
0
381
题解 | #链表中倒数最后k个结点#
/** struct ListNode { int val; struct ListNode *next; }; C语言声明定义全局变量请加上static,防止重复定义 / /* 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 @param pHead ListNo...
C
2022-01-13
0
384