All Projects → DragonFive → code_interview

DragonFive / code_interview

Licence: other
LeetCode LintCode 题解, 剑指offer题目,互联网公司面试,BAT外企等面试题目

Programming Languages

C++
36643 projects - #6 most used programming language

Projects that are alternatives of or similar to code interview

Leetcode Java
LeetCode solutions written in Java
Stars: ✭ 134 (+538.1%)
Mutual labels:  leetcode, interview, interview-questions
FAANG-Coding-Interview-Questions
A curated List of Coding Questions Asked in FAANG Interviews
Stars: ✭ 1,195 (+5590.48%)
Mutual labels:  leetcode, interview, interview-questions
Byte By Byte Solutions
Coding interview questions and solutions
Stars: ✭ 134 (+538.1%)
Mutual labels:  leetcode, interview, interview-questions
Leetcode
👏🏻 leetcode solutions for Humans™
Stars: ✭ 1,129 (+5276.19%)
Mutual labels:  leetcode, interview, interview-questions
Interviews
Everything you need to know to get the job.
Stars: ✭ 54,875 (+261209.52%)
Mutual labels:  leetcode, interview, interview-questions
Thecodegang Resource Integration
📚 TheCodeGang | 校招面试必备材料资源整合 | 计算机基础知识点解析、算法、经验、面经📚
Stars: ✭ 81 (+285.71%)
Mutual labels:  leetcode, interview, interview-questions
Leetcode In Swift
My solutions to LeetCode problems written in Swift
Stars: ✭ 150 (+614.29%)
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 (+1357.14%)
Mutual labels:  leetcode, interview, interview-questions
Interviewroom
Contains all important data structure and algorithms problems asked in interviews
Stars: ✭ 207 (+885.71%)
Mutual labels:  leetcode, interview, interview-questions
Interviewguide
《大厂面试指北》——包括Java基础、JVM、数据库、mysql、redis、计算机网络、算法、数据结构、操作系统、设计模式、系统设计、框架原理。最佳阅读地址:http://notfound9.github.io/interviewGuide/
Stars: ✭ 3,117 (+14742.86%)
Mutual labels:  leetcode, interview, interview-questions
Awesome Algorithm Question Solution
LeetCode,《剑指offer》中的算法题的题目和解法以及常见算法的实现
Stars: ✭ 988 (+4604.76%)
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 (+4290.48%)
Mutual labels:  leetcode, interview, interview-questions
Free Programming Books
📚码农周报 免费的编程书籍,leetcode(力扣)题解、前端算法题,牛客网前端大厂面试题题解、提升工作效率的常用工具等📈🎉
Stars: ✭ 345 (+1542.86%)
Mutual labels:  leetcode, interview, interview-questions
Leetcode Sol Res
Clean, Understandable Solutions and Resources for LeetCode Online Judge Algorithm Problems.
Stars: ✭ 1,647 (+7742.86%)
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 (+102795.24%)
Mutual labels:  leetcode, interview, interview-questions
.codebits
📚 List of resources for Algorithms and Data Structures in Python & other CS topics @2017
Stars: ✭ 144 (+585.71%)
Mutual labels:  leetcode, interview, interview-questions
Coder
求职信息 组队刷题 经验交流
Stars: ✭ 22 (+4.76%)
Mutual labels:  leetcode, interview, interview-questions
interview-leetcode
【📚 技术面试高频算法+真实面试各类问答+学习指南】助力快速复习找到工作,涵盖大部分程序员所需要掌握的核心知识。
Stars: ✭ 161 (+666.67%)
Mutual labels:  leetcode, interview, interview-questions
Algorithms Leetcode Javascript
Algorithms resolution in Javascript. Leetcode - Geeksforgeeks - Careercup
Stars: ✭ 157 (+647.62%)
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 (-4.76%)
Mutual labels:  leetcode, interview, interview-questions

code_interview

这里包含了leetcode和lintcode的一些题目的解法

sword_to_offer是剑指offer

code_interview是面试中遇到的有意思的题目总结,比如说BAT,intel,NVIDIA等公司面试的题目记录

improve_sort_algorithm包含了对传统排序算法的改进和应用总结

Leetcode

Python / C++ 11 Solutions LeetCode Questions and Some of LintCode Questions. 用python和c++实现的leetcode和lintcode以及geeksForGeeks的题解 数据结构与算法/leetcode/lintcode题解

结构

用栈实现队列和用队列实现栈

string 字符串

28- Implement strStr() 实现找字串功能

lint158 anagrams 两个乱序字符串的比较 lint55 compare-string和group string都是同型题目

int79-LCS lintcode上的79题 寻找最长公共字串

lintcode 138-Subarray-Sum

integer-arr 整型数组

值得回顾的题

41-first-missing-positive

01-Two-Sum

求解第K大元素题目

/lint80-median

215-kth-largest-element-in-an-array

折半搜索相关的题目

33-search-in-rotated-sorted-array.md

81-search-in-rotated-sorted-array-ii.md

linkedList

82-remove-duplicates-from-sorted-list-ii 86-partition-list

002-add-two-numbers

gfg-sum-of-two-linked-lists

141-linked-list-cycle 142-linked-list-cycle-ii 判断链表是否有环,以及环的位置,和两个交叉链表相交的位置

92-reverse-linked-list-ii

61-rotate-list

203-remove-linked-list-elements

147-insertion-sort-list 24-swap-nodes-in-pairs

23-merge-k-sorted-lists 143-reorder-list

234-palindrome-linked-list

146-lru-cache

138-copy-list-with-random-pointer

binaryTree

lint88-lowest-common-ancestor

回溯+剪枝 或字典序遍历

47-permutations-ii

46-permutations

90-subsets-ii

31-next-permutation

<iframe frameborder="no" border="0" marginwidth="0" marginheight="0" width=330 height=86 src="https://github.com//music.163.com/outchain/player?type=2&id=26418207&auto=1&height=66"></iframe>
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].