1.递归法 # -*- coding:utf-8 -*- # class ListNode: # def __init__(self, x): # self.val = x # self.next = None class Solution: # 返回ListNode def ReverseList ...
分类:
其他好文 时间:
2020-04-20 15:39:28
阅读次数:
44
此博客链接: 两数相加() 题目链接:https://leetcode-cn.com/problems/add-two-numbers/comments/ class Solution { public ListNode addTwoNumbers(ListNode l1, ListNode l2) ...
分类:
其他好文 时间:
2020-04-20 10:27:00
阅读次数:
77
将两串链表合并成一串(保持有序)。题目很简单,思路是用两个指针分别遍历两串链表,同时比较节点值,取小的那一边并将指针向右移动。代码: # Definition for singly-linked list. # class ListNode(object): # def __init__(self, ...
分类:
其他好文 时间:
2020-04-18 21:23:24
阅读次数:
84
#include "stdafx.h"#include <string>using namespace std;#include <vector>#include <stack>typedef struct tag_listnode{ int data; struct tag_listnode *n ...
分类:
其他好文 时间:
2020-04-18 21:19:56
阅读次数:
50
206.逆转链表Input: 1->2->3->4->5->NULL Output: 5->4->3->2->1->NULL方法一:迭代 # Definition for singly-linked list. # class ListNode: # def __init__(self, x): # ...
分类:
其他好文 时间:
2020-04-18 11:57:28
阅读次数:
87
题目描述: java:快慢指针: /** * Definition for singly-linked list. * public class ListNode { * int val; * ListNode next; * ListNode(int x) { val = x; } * } */ ...
分类:
其他好文 时间:
2020-04-16 00:38:08
阅读次数:
113
自己想的太复杂了。。。。。 /** * Definition for singly-linked list. * public class ListNode { * int val; * ListNode next; * ListNode(int x) { val = x; } * } */ cla ...
分类:
其他好文 时间:
2020-04-15 00:42:52
阅读次数:
53
题目描述 输入一个链表,按链表从尾到头的顺序返回一个ArrayList。 /** * public class ListNode { * int val; * ListNode next = null; * * ListNode(int val) { * this.val = val; * } * ...
分类:
其他好文 时间:
2020-04-14 22:27:51
阅读次数:
66
1 /** 2 * Definition for singly-linked list. 3 * struct ListNode { 4 * int val; 5 * ListNode *next; 6 * ListNode(int x) : val(x), next(NULL) {} 7 * }; ...
分类:
其他好文 时间:
2020-04-12 19:00:22
阅读次数:
74
javaO(N) /** * Definition for singly-linked list. * public class ListNode { * int val; * ListNode next; * ListNode(int x) { val = x; } * } */ class So ...
分类:
其他好文 时间:
2020-04-12 00:00:09
阅读次数:
85