xgqfrms™, xgqfrms® : xgqfrms's offical website of cnblogs! xgqfrms™, xgqfrms® : xgqfrms's offical website of GitHub!

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/

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 发布文章使用:只允许注册用户才可以访问!


posted @   xgqfrms  阅读(120)  评论(3编辑  收藏  举报
编辑推荐:
· 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
点击右上角即可分享
微信分享提示