Array解题方法小结
LeetCode上的相关题目(easy) 26, 27, 35, 48, 88 118, 119, 121, 122, 136, 162, 167, 169 217, 219, 243, 268, …
Senior front-end Engineer Interview – 高级前端工程师面试准备知识清单
最近接到一个偏前端的面试通知,作为一个老司机,突然发现无从下手,前端不就是HTML + CSS + JS三件套嘛,好像什么都挺清楚的,但是深入一想,好像知识体系还是非常模糊的,这里特地整理下材料,希望…
JS 中 this 关键字详解
最近研究JavaScript里的this,搞的有点晕,不过找到一篇总结的不错的文章,给大家分享下:https://segmentfault.com/a/1190000003046071 …
CSS 最核心的几个概念
原文来自:http://geekplux.com/2014/04/25/several_core_concepts_of_css.html 本文将讲述 CSS 中最核心的几个概念,包括:盒模型、pos…
LinkedList解题方法小结
LeetCode上相关的题目(easy) 2, 21, 82, 83, 86, 141, 160, 203, 206, 234, 237 Medium题目 142 技巧 双指针,一个走两步,一个走一步…
LeetCode – 141. Linked List Cycle
Given a linked list, determine if it has a cycle in it. Follow up: Can you solve it without using ex…
LeetCode – 160. Intersection of Two Linked Lists
Write a program to find the node at which the intersection of two singly linked lists begins. …
LeetCode – 234. Palindrome Linked List
Given a singly linked list, determine if it is a palindrome. Follow up: Could you do it in O(n) time…
LeetCode – 206. Reverse Linked List
Reverse a singly linked list. 这道题非常基础,需要熟练掌握 /** * Definition for singly-linked list. * public class…
LeetCode – 2. Add Two Numbers
You are given two non-empty linked lists representing two non-negative integers. The digits are stor…