All Projects → Xunzhuo → Algorithm Guide

Xunzhuo / Algorithm Guide

Licence: apache-2.0
BITLIU`s Tutorials of Algorithm and Data Structure🚀🚀🚀

Programming Languages

java
68154 projects - #9 most used programming language
c
50402 projects - #5 most used programming language

Projects that are alternatives of or similar to Algorithm Guide

Leetcode 101
LeetCode 101:和你一起你轻松刷题(C++)
Stars: ✭ 5,327 (+398.78%)
Mutual labels:  algorithms, interview
Fuck Coding Interviews
How on earth can I ever think of a solution like that in an interview?!
Stars: ✭ 464 (-56.55%)
Mutual labels:  algorithms, interview
Cs Interview Knowledge Map
Build the best interview map. The current content includes JS, network, browser related, performance optimization, security, framework, Git, data structure, algorithm, etc.
Stars: ✭ 17,387 (+1528%)
Mutual labels:  algorithms, interview
Al Go Rithms
🎵 Algorithms written in different programming languages - https://zoranpandovski.github.io/al-go-rithms/
Stars: ✭ 1,036 (-3%)
Mutual labels:  algorithms, interview
Book on python algorithms and data structure
🪐 Book on Python, Algorithms, and Data Structures. 🪐
Stars: ✭ 604 (-43.45%)
Mutual labels:  algorithms, interview
Front End Interview
A list of interview for front-end developer(前端开发者面试清单)
Stars: ✭ 2,754 (+157.87%)
Mutual labels:  algorithms, interview
Ruby
All algorithms implemented in Ruby
Stars: ✭ 454 (-57.49%)
Mutual labels:  algorithms, interview
Javascript Algorithms
📝 Algorithms and data structures implemented in JavaScript with explanations and links to further readings
Stars: ✭ 133,406 (+12391.2%)
Mutual labels:  algorithms, interview
Go
Algorithms Implemented in GoLang
Stars: ✭ 7,385 (+591.48%)
Mutual labels:  algorithms, interview
Algorithms And Data Structures In Java
Algorithms and Data Structures in Java
Stars: ✭ 498 (-53.37%)
Mutual labels:  algorithms, interview
Mega Interview Guide
The MEGA interview guide, JavaSciript, Front End, Comp Sci
Stars: ✭ 255 (-76.12%)
Mutual labels:  algorithms, interview
Algo Basic
专注于分享算法,计算机基础(包括计算机网络,操作系统,MySQL等),无论是应付面试,还是提升自己地内功,这里都能帮到你
Stars: ✭ 768 (-28.09%)
Mutual labels:  algorithms, interview
Coding Interview University
A complete computer science study plan to become a software engineer.
Stars: ✭ 204,859 (+19081.55%)
Mutual labels:  algorithms, interview
Codinginterviews
This repository contains coding interviews that I have encountered in company interviews
Stars: ✭ 2,881 (+169.76%)
Mutual labels:  algorithms, interview
Javaguide
「Java学习+面试指南」一份涵盖大部分 Java 程序员所需要掌握的核心知识。准备 Java 面试,首选 JavaGuide!
Stars: ✭ 114,707 (+10640.36%)
Mutual labels:  algorithms, interview
Interview
Data Structures and Algorithms in Java (useful in interview process)
Stars: ✭ 396 (-62.92%)
Mutual labels:  algorithms, interview
How To Prepare For Google Interview Swe Sre
This repository includes resources which are more than sufficient to prepare for google interview if you are applying for a software engineer position or a site reliability engineer position
Stars: ✭ 251 (-76.5%)
Mutual labels:  algorithms, interview
Interviews
Everything you need to know to get the job.
Stars: ✭ 54,875 (+5038.11%)
Mutual labels:  algorithms, interview
Competitive Programming
📌 📚 Solution of competitive programming problems, code templates, Data Structures and Algorithms, hackathons, interviews and much more.
Stars: ✭ 496 (-53.56%)
Mutual labels:  algorithms, interview
Android Notes
Android开发核心知识点笔记(不断更新中🔥)
Stars: ✭ 737 (-30.99%)
Mutual labels:  algorithms, interview

Algorithm Guide 🌈

Stargazers over time

本仓库带你系统掌握程序员必知必会的算法数据结构

本仓库主要有两个分支

  • master分支:最近的新分支,也是以后日常维护的主分支😀,内容为算法和数据结构的教程。

    算法部分基本完成,数据结构还有很多未完成部分,空闲时会加快完善!

  • Collections 分支:以前的主分支,整理了算法和数据结构的资料,现作为辅助分支,这里访问🚀

目录👀:

  1. 算法篇🔥
  2. 数据结构篇🌳
  3. 刷题练习篇✍

算法篇🔥

数据结构篇🌳

刷题练习篇✍

在掌握了重要的算法和数据结构之后,就可以愉快的刷题啦🎉

网站的选择?

当然推荐 LeetCode咯,传送门在这:点击👈

刷哪些题目?

  1. 如果你时间紧张,想突击面试:可以刷刷LeetCode热门推荐

    image-20201220164553273

    比如:Leetcode 热题 Hot 100🔥LeetCode 精选 TOP 面试题🔥

  2. 如果你时间充裕:可以按以下分类,系统刷题:

    • 专题一:数组(Chapter1_Array)
    • 专题二:链表(Chapter2_list)
    • 专题三:字符串(Chapter3_String)
    • 专题四:栈(Chapter4_Stack)
    • 专题五:树(Chapter5_Tree)
    • 专题六:排序(Chapter6_Sort)
    • 专题七:查找(Chapter7_Search)
    • 专题八:暴力解法(Chapter8_Violence)
    • 专题九:BFS(Chapter9_BFS)
    • 专题十:DFS(Chapter10_DFS)
    • 专题十一:分治(Chapter11_Paritition)
    • 专题十二:贪心(Chapter12_Greedy)
    • 专题十三:动态规划(Chapter13_DP)
    • 专题十四:图(Chapter14_Graph)
    • 专题十五:不定类型(Chapter15_Unspecific)

刷题策略

不要一味追求数量,题目是刷不完,唯有掌握思路学会总结,提高做题质量,才能举一反三

  • 第一遍先思考,如果没思路,可以看题解,结合其他人的题解刷。总结自己是否在思路上有问题,或者是否算法与数据结构基础上有问题,掌握本题的类型,思考方式,最优题解。
  • 第二遍回忆最优解法尝试直接写,并与之前自己写过的解答作比对,总结问题和方法。
  • 第三遍:提升刷题速度一题多解,拿出一个题,就能够知道其考察重点,解题方法,在短时间内写出解答,并且思考多种解决办法。

OK,现在你可以制定自己的刷题计划,开始行动啦~坚持就是胜利!✊

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].