Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Coding Interview University | 272,852 | 3 days ago | 57 | cc-by-sa-4.0 | ||||||
A complete computer science study plan to become a software engineer. | ||||||||||
Javascript Algorithms | 177,499 | 4 | 14 days ago | 4 | June 02, 2018 | 343 | mit | JavaScript | ||
📝 Algorithms and data structures implemented in JavaScript with explanations and links to further readings | ||||||||||
Fucking Algorithm | 120,626 | a month ago | 365 | Markdown | ||||||
刷算法全靠套路,认准 labuladong 就够了!English version supported! Crack LeetCode, not only how, but also why. | ||||||||||
Interviews | 60,220 | 4 months ago | 113 | mit | Java | |||||
Everything you need to know to get the job. | ||||||||||
Java | 54,993 | 10 hours ago | 202 | mit | Java | |||||
All Algorithms implemented in Java | ||||||||||
Hello Algo | 53,368 | 10 hours ago | 20 | other | Java | |||||
《Hello 算法》:动画图解、一键运行的数据结构与算法教程,支持 Java, C++, Python, Go, JS, TS, C#, Swift, Rust, Dart, Zig 等语言。 | ||||||||||
Leetcode | 52,867 | 17 days ago | 9 | other | JavaScript | |||||
LeetCode Solutions: A Record of My Problem Solving Journey.( leetcode题解,记录自己的leetcode解题之路。) | ||||||||||
Algorithm Visualizer | 45,235 | 19 days ago | 60 | mit | JavaScript | |||||
:fireworks:Interactive Online Platform that Visualizes Algorithms from Code | ||||||||||
Interview | 31,164 | 11 days ago | 23 | other | C++ | |||||
📚 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, recommendation, etc. | ||||||||||
Javascript | 29,860 | 3 days ago | 83 | gpl-3.0 | JavaScript | |||||
Algorithms and Data Structures implemented in JavaScript for beginners, following best practices. |
This repo contains my notes on work with Go and computer systems
Language Specification
Syntax
Struct: Declare_Initialize | Name And Anonymous type Field | Field Function| Iterate Field Name And Value | Selector and Promoted | Method Set
Function: Initialization | argument | multiple returns | named return
Data Structures
Decoupling
Dependency management Go Modules
Error Handling
Context
Concurrency LearnConcurrency
Diagnostics Profiling
Testing
Design Pattern Design Patterns | javatpoint
Crypto
databases
Awesome Go
Docs
Interview
defer
called?
It was called according the consuming sequence of stack. That is to say, the first
defer
clause will be invoked as the last.
defer
and panic
which is run first?
First
defer
, thenpanic
.
new()
and make()
?
For
new
function, it returns pointer. It is used when initiate struct.Make
is mostly used when initiate slice, map and channel.
append()
receive pointer as parameter?
No.
No.
When passing value, it will create a new copy. For pointer, it will pass the value itself.
str := "hello", str[1] = 'a'
Is the string gonna modified?
No. Because the string is a constant.
string
?
No. But we can assign nil to
*string
map
and range
is executed by sequence?
No.
==
?
No.
No. &Vector{} new(Vector) is the same, one thing to note: new() is the only way to get a pointer to an unnamed integer or other basic type. You can write "p := new(int)" but you can't write "p := &int{0}".