Skip to content

Instantly share code, notes, and snippets.

@asukakenji
asukakenji / Data Structures and Algorithms Reading List.md
Created September 13, 2020 07:44
Data Structures and Algorithms Reading List
@asukakenji
asukakenji / Handbook of Data Structures and Applications (1st Edition).md
Created September 13, 2020 08:24
Handbook of Data Structures and Applications

Handbook of Data Structures and Applications (1st Edition)

Information

  • Editors: Dinesh P. Mehta, Sartaj Sahni
  • Publisher: Chapman and Hall/CRC, Taylor & Francis, 2004
  • ISBN-10: 1-58488-435-5 (1584884355)
  • ISBN-13: 978-1-58488-435-4 (9781584884354)

Links

@asukakenji
asukakenji / Data Structures & Algorithm Analysis in Java (1st Edition).md
Created September 13, 2020 08:27
Data Structures & Algorithm Analysis in Java

Data Structures & Algorithm Analysis in Java (1st Edition)

Information

  • Author: Mark Allen Weiss
  • Publisher: Addison-Wesley, 1999
  • ISBN-10: 0-201-35754-2 (0201357542)
  • ISBN-13: 978-0-201-35754-7 (9780201357547)

Links

@asukakenji
asukakenji / 0-go-os-arch.md
Last active April 24, 2024 06:51
Go (Golang) GOOS and GOARCH

Go (Golang) GOOS and GOARCH

All of the following information is based on go version go1.17.1 darwin/amd64.

GOOS Values

GOOS Out of the Box
aix
android
@asukakenji
asukakenji / go-stdlib-interface-selected.md
Last active May 5, 2024 04:26
Go (Golang) Standard Library Interfaces (Selected)

Go (Golang) Standard Library Interfaces (Selected)

This is not an exhaustive list of all interfaces in Go's standard library. I only list those I think are important. Interfaces defined in frequently used packages (like io, fmt) are included. Interfaces that have significant importance are also included.

All of the following information is based on go version go1.8.3 darwin/amd64.