LeetCode & linked list
LeetCode & linked list
数据结构 & 算法
链表
单链表
双链表
"use strict";
/**
*
* @author xgqfrms
* @license MIT
* @copyright xgqfrms
* @created 2020-11-17
* @modified
*
* @description 链表
* @difficulty Easy Medium Hard
* @complexity O(n)
* @augments
* @example
* @link
* @solutions
*
* @best_solutions
*
*/
const log = console.log;
// 节点
function ListNode(val, next) {
this.val = 0 || val;
this.next = null || next;
}
// 链表
function LinkedList(value) {
const node = new ListNode(value, ``);
if(!head) {
head = node;
} else {
let current = head;
while(current.next) {
current = current.next;
}
current.next = node;
}
};
// 链表
function ListNode(val, next) {
this.val = (val===undefined ? 0 : val)
this.next = (next===undefined ? null : next)
}
const singlyLinkedList = [...new Uint8Array(5)].map((item, i) => new ListNode(i + 1, i < 4 ? i + 2 : null));
reverse-linked-list
链表反转
https://leetcode.com/problems/reverse-linked-list/
"use strict";
/**
*
* @author xgqfrms
* @license MIT
* @copyright xgqfrms
* @created 2020-08-017
* @modified
*
* @description 206 reverse-linked-list
* @description 206 反转链表
* @difficulty Easy
* @complexity O(n)
* @augments
* @example
* @link
* @solutions
*
*/
const log = console.log;
/**
* Definition for singly-linked list.
* function ListNode(val, next) {
* this.val = (val===undefined ? 0 : val)
* this.next = (next===undefined ? null : next)
* }
*/
/**
* @param {ListNode} head
* @return {ListNode}
*/
var reverseList = function(head) {
let prev = null;
while (head) {
// swap
let temp = head.next;
head.next = prev;
prev = head;
head = temp;
}
return prev;
};
/*
[1,2,3,4,5]
执行步骤
p = null
h = 1
t = 2(h.n)
h.n = null(p)
// 1.n => null
p = 1(h)
h = 2t)
h = 2
t = 3(h.n)
h.n = 1(p)
// 2.n => 1
p = 2(h)
h = 3(t)
*/
/*
var reverseList = function(head) {
let prev = null;
let curr = head;
while (curr) {
let temp = curr.next;
curr.next = prev;
prev = curr;
curr = temp;
}
return prev;
};
*/
refs
https://leetcode.com/tag/linked-list/
https://leetcode.com/problemset/all/?topicSlugs=linked-list
https://leetcode.com/problemset/top-100-liked-questions/
©xgqfrms 2012-2020
www.cnblogs.com 发布文章使用:只允许注册用户才可以访问!
本文首发于博客园,作者:xgqfrms,原文链接:https://www.cnblogs.com/xgqfrms/p/13516981.html
未经授权禁止转载,违者必究!
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· AI与.NET技术实操系列(二):开始使用ML.NET
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
· 理解Rust引用及其生命周期标识(上)
· 浏览器原生「磁吸」效果!Anchor Positioning 锚点定位神器解析
· DeepSeek 开源周回顾「GitHub 热点速览」
· 记一次.NET内存居高不下排查解决与启示
· 物流快递公司核心技术能力-地址解析分单基础技术分享
· .NET 10首个预览版发布:重大改进与新特性概览!
· .NET10 - 预览版1新功能体验(一)
2019-08-17 前端 & 简历 & 面试
2018-08-17 swagger & api
2018-08-17 HTML5 Canvas & ruler
2018-08-17 TeamViewer & remote control
2018-08-17 Node.js & module system
2018-08-17 Linux tree command All In One
2018-08-17 iframe