常羡人间琢玉郎
常羡人间琢玉郎
全部文章
题解
归档
标签
去牛客网
登录
/
注册
常羡人间琢玉郎的博客
全部文章
/ 题解
(共42篇)
题解 | #两数之和#
using System; using System.Collections.Generic; using System.Collections; class Solution { /** &nbs...
C#
数组
2022-01-29
0
475
题解 | #删除链表的倒数第n个节点#
using System; using System.Collections.Generic; /* public class ListNode { public int val; public ListNode ...
C#
链表
2022-01-29
0
352
题解 | #删除有序链表中重复的元素-II#
using System; using System.Collections.Generic; /* public class ListNode { public int val; public ListNode ...
C#
链表
2022-01-29
0
311
题解 | #求平方根#
using System; using System.Collections.Generic; class Solution { /** *&nbs...
C#
2022-01-28
0
250
题解 | #链表中环的入口结点#
/* public class ListNode { public int val; public ListNode next; &...
C#
2022-01-28
0
270
题解 | #大数加法# 差点超时,改了好几次,我服了
using System; using System.Collections.Generic; using System.Numerics; using System.Text; class Solution { ...
C#
字符串
2022-01-28
1
339
题解 | #买卖股票的最好时机(一)#
using System; using System.Collections.Generic; class Solution { /** *&nbs...
C#
动态规划
数组
2022-01-28
0
300
题解 | #两个链表生成相加链表#
using System; using System.Collections.Generic; /* public class ListNode { public int val; public ListNode ...
C#
栈
链表
2022-01-27
0
329
题解 | #二叉树中和为某一值的路径(二)#
using System.Collections.Generic; /* public class TreeNode { public int val; ...
C#
二叉树
深度优先搜索
2022-01-27
0
275
题解 | #表达式求值#
using System; using System.Collections.Generic; using System.Linq; class Solution { /**  ...
C#
2022-01-27
1
292
首页
上一页
1
2
3
4
5
下一页
末页