All Projects → Mayandev → fe-interview-handwrite

Mayandev / fe-interview-handwrite

Licence: other
📖 前端面试常见手写题整理

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to fe-interview-handwrite

Leetcode Java
LeetCode solutions written in Java
Stars: ✭ 134 (-50.92%)
Mutual labels:  leetcode, interview, interview-questions
Algorithms Leetcode Javascript
Algorithms resolution in Javascript. Leetcode - Geeksforgeeks - Careercup
Stars: ✭ 157 (-42.49%)
Mutual labels:  leetcode, interview, interview-questions
Byte By Byte Solutions
Coding interview questions and solutions
Stars: ✭ 134 (-50.92%)
Mutual labels:  leetcode, interview, interview-questions
Thecodegang Resource Integration
📚 TheCodeGang | 校招面试必备材料资源整合 | 计算机基础知识点解析、算法、经验、面经📚
Stars: ✭ 81 (-70.33%)
Mutual labels:  leetcode, interview, interview-questions
CodingInterview
Leetcode解题、剑指offer第二版💪💪💪⛷😀
Stars: ✭ 28 (-89.74%)
Mutual labels:  leetcode, interview, interview-questions
Leetcode Sol Res
Clean, Understandable Solutions and Resources for LeetCode Online Judge Algorithm Problems.
Stars: ✭ 1,647 (+503.3%)
Mutual labels:  leetcode, interview, interview-questions
Leetcode In Swift
My solutions to LeetCode problems written in Swift
Stars: ✭ 150 (-45.05%)
Mutual labels:  leetcode, interview, interview-questions
Interview
📚 C/C++ 技术面试基础知识总结,包括语言、程序库、数据结构、算法、系统、网络、链接装载库等知识及面试经验、招聘、内推等信息。This repository is a summary of the basic knowledge of recruiting job seekers and beginners in the direction of C/C++ technology, including language, program library, data structure, algorithm, system, network, link loading library, interview experience, recruitment, recommendatio…
Stars: ✭ 21,608 (+7815.02%)
Mutual labels:  leetcode, interview, interview-questions
Interviews
Everything you need to know to get the job.
Stars: ✭ 54,875 (+20000.73%)
Mutual labels:  leetcode, interview, interview-questions
Interviewroom
Contains all important data structure and algorithms problems asked in interviews
Stars: ✭ 207 (-24.18%)
Mutual labels:  leetcode, interview, interview-questions
Leetcode
👏🏻 leetcode solutions for Humans™
Stars: ✭ 1,129 (+313.55%)
Mutual labels:  leetcode, interview, interview-questions
Data-Structure-Algorithms-LLD-HLD
A Data Structure Algorithms Low Level Design and High Level Design collection of resources.
Stars: ✭ 922 (+237.73%)
Mutual labels:  leetcode, interview, interview-questions
Awesome Algorithm Question Solution
LeetCode,《剑指offer》中的算法题的题目和解法以及常见算法的实现
Stars: ✭ 988 (+261.9%)
Mutual labels:  leetcode, interview, interview-questions
FAANG-Coding-Interview-Questions
A curated List of Coding Questions Asked in FAANG Interviews
Stars: ✭ 1,195 (+337.73%)
Mutual labels:  leetcode, interview, interview-questions
Free Programming Books
📚码农周报 免费的编程书籍,leetcode(力扣)题解、前端算法题,牛客网前端大厂面试题题解、提升工作效率的常用工具等📈🎉
Stars: ✭ 345 (+26.37%)
Mutual labels:  leetcode, interview, interview-questions
.codebits
📚 List of resources for Algorithms and Data Structures in Python & other CS topics @2017
Stars: ✭ 144 (-47.25%)
Mutual labels:  leetcode, interview, interview-questions
interview-leetcode
【📚 技术面试高频算法+真实面试各类问答+学习指南】助力快速复习找到工作,涵盖大部分程序员所需要掌握的核心知识。
Stars: ✭ 161 (-41.03%)
Mutual labels:  leetcode, interview, interview-questions
Coderchef Kitchen
The official repository for our programming kitchen which consists of 50+ delicious programming recipes having all the interesting ingredients ranging from dynamic programming, graph theory, linked lists and much more. All the articles contain beautiful images and some gif/video at times to help clear important concepts.
Stars: ✭ 306 (+12.09%)
Mutual labels:  leetcode, interview, interview-questions
Interviewguide
《大厂面试指北》——包括Java基础、JVM、数据库、mysql、redis、计算机网络、算法、数据结构、操作系统、设计模式、系统设计、框架原理。最佳阅读地址:http://notfound9.github.io/interviewGuide/
Stars: ✭ 3,117 (+1041.76%)
Mutual labels:  leetcode, interview, interview-questions
Algorithmic-Problem-Solving
Solutions of algorithmic type of programming problems from sites like LeetCode.com, HackerRank.com, LeetCode.com, Codility.com, CodeForces.com, etc. using Java.
Stars: ✭ 20 (-92.67%)
Mutual labels:  leetcode, interview, interview-questions

前端面试手写题

整理前端面试常见的手写题,面试出现概率极高,建议每个都过自己过一遍。

你也可以提交 PR,提供你面试遇到的题目。

代码汇总请参照 SUMMARY.md

高频:★★★
中频:★★
低频:★

JavaScript 原理

函数

数组

字符串

数学

算法

算法需要掌握基本的数据结构,例如栈、队列、链表、树、排序算法等等,建议去 LeetCode 上刷题。不过不要为了刷题而刷题,最重要的是归纳与总结,刷十道不如一道刷十遍。

分享一下自己整理的 LeetCode 上必刷的题,比较具有代表性。

  • LeetCode 001 Two Sum
  • LeetCode 015 3Sum(可能会问 LeetCode18.4Sum思路)
  • LeetCode 020 Valid Parentheses
  • LeetCode 021 Merge Two Sorted Lists
  • LeetCode 025 Reverse Nodes in k-group
  • LeetCode 053 Maximum Subarra
  • LeetCode 066 Plus One(等介于:高精度加加法)
  • LeetCode 098 Validate Binary Search Tree
  • LeetCode 110 Balanced Binary Tree
  • LeetCode 134 Gas Station
  • LeetCode 136 Single Number
  • LeetCode 137 Single Number II
  • LeetCode 146 LRU Cache(变形题:带有过期时间的LRU缓存)(Map + 链表)
  • LeetCode 206 Reverse Linked List(递归、迭代)
  • LeetCode 215 Kth Largest Element in an Array(等价于:快速排序)
  • LeetCode 232 Implement Queue using Stacks(每次将新来的元素放到栈底,stack.push())
  • LeetCode 328 Odd Even Linked List
  • LeetCode 415 Add Strings(等价于:大数加法)
  • LeetCode 470 rand70rand100
  • LeetCode 496 Next Greater Element I(时间复杂度O(n)(单调栈,使用 Map 映射 stack 的指定位置)
  • LeetCode 716 Max Stack(两个栈实现最大栈,要求pop,push, get max都为0(1)
  • LeetCode 860 Lemonade Change
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].