From charlesreid1

 
(12 intermediate revisions by the same user not shown)
Line 2: Line 2:


=Study Notes=  
=Study Notes=  
{{Main|Study Guides}}


We put together a repository with a detailed outline of topics in computer science as part of a CS study plan. We updated it with notes and code (links to this wiki, and to git repos).
We put together a repository with a detailed outline of topics in computer science as part of a CS study plan. We updated it with notes and code (links to this wiki, and to git repos).


That repository can be found here: https://charlesreid1.com:3000/cs/study-plan
That repository can be found here: https://git.charlesreid1.com/cs/study-plan


=Topics=
=Topics=


==computer science topics==
==Computer Science Topics==


List of topics, with links to notes on this wiki and code in git repos: https://charlesreid1.com:3000/cs/study-plan/src/master/TODOSoftwareEngineering.md
List of topics, with links to notes on this wiki and code in git repos: https://git.charlesreid1.com/cs/study-plan/src/master/TODOSoftwareEngineering.md


List of topics:  
List of topics:  
Line 29: Line 31:
Polished summaries of information: [[Study Guides]]
Polished summaries of information: [[Study Guides]]


Link: https://charlesreid1.com:3000/cs/study-plan/src/master/TODOSoftwareEngineering.md
Link: https://git.charlesreid1.com/cs/study-plan/src/master/TODOSoftwareEngineering.md


Topics:
Topics:
Line 103: Line 105:
* [[Graphs/Data Structures]]
* [[Graphs/Data Structures]]
* [[Graphs/ADT]]
* [[Graphs/ADT]]
===Number Theory===
Languages and Tools:
* Java for number theory (BigInteger)
* Pari GP
* Mathematica


===Numerics===
===Numerics===


Link: https://charlesreid1.com:3000/cs/study-plan/src/master/TODONumerics.md
Link: https://git.charlesreid1.com/cs/study-plan/src/master/TODONumerics.md


[[Numerics]] topics:
[[Numerics]] topics:
* Linear solvers and linear algebra
* [[Linear Algebra]] and linear solvers
* Nonlinear solvers and root-finding
* [[Solving Nonlinear Equations]] and root-finding
* Interpolation and extrapolation
* Interpolation and extrapolation
* Integration and function evaluation
* Integration and function evaluation
* Minimization and maximization, optimization
* Minimization and maximization, optimization
* Model-building


===Languages and Tools===
===Languages and Tools===


Languages:
Languages:
* Java
* [[Java]]
* Python
* [[Python]]
* Go (minimal)
* Go (minimal)
* C++ (minimal)
* C++ (minimal)
Line 135: Line 131:
* Extended data structures libraries (Pandas, Guava) and utility libraries (itertools, Apache Commons)
* Extended data structures libraries (Pandas, Guava) and utility libraries (itertools, Apache Commons)
* Numerical libraries (big numbers, factoring, exponents, root finding, linear solvers, nonlinear solvers)
* Numerical libraries (big numbers, factoring, exponents, root finding, linear solvers, nonlinear solvers)
* Graph library
* Graph libraries


Infrastructure:
Infrastructure:
Line 146: Line 142:
* Awesome math: https://github.com/rossant/awesome-math
* Awesome math: https://github.com/rossant/awesome-math


Some nice awesome lists:
Algorithms:
* Awesome algorithms: https://github.com/tayllan/awesome-algorithms
* Awesome algorithms: https://github.com/tayllan/awesome-algorithms
* Awesome challenges: https://github.com/mauriciovieira/awesome-challenges
* Awesome challenges: https://github.com/mauriciovieira/awesome-challenges
Line 153: Line 149:
* awesome-awesomeness: https://github.com/sindresorhus/awesome
* awesome-awesomeness: https://github.com/sindresorhus/awesome
* sindresorhus/awesome: https://github.com/sindresorhus/awesome
* sindresorhus/awesome: https://github.com/sindresorhus/awesome
Programming tests:
* http://smarterer.com/tests/categories/Programming
Growth hacking:
* https://github.com/btomashvili/awesome-growth-hacking


=Flags=
=Flags=

Latest revision as of 15:58, 12 March 2019

computer science: the science of problem-solving with computers, computational devices, and computational methods.

Study Notes

We put together a repository with a detailed outline of topics in computer science as part of a CS study plan. We updated it with notes and code (links to this wiki, and to git repos).

That repository can be found here: https://git.charlesreid1.com/cs/study-plan

Topics

Computer Science Topics

List of topics, with links to notes on this wiki and code in git repos: https://git.charlesreid1.com/cs/study-plan/src/master/TODOSoftwareEngineering.md

List of topics:

  • Data Structures
  • Algorithms
  • Mathematics
    • Combinatorics
    • Probability
    • Number Theory
    • Numerics
  • Languages and APIs

Data Structures

Main Data Structures Page: Data Structures (see also: Template:DataStructuresFlag)

Polished summaries of information: Study Guides

Link: https://git.charlesreid1.com/cs/study-plan/src/master/TODOSoftwareEngineering.md

Topics:

Algorithms

Algorithms can be divided into categories:


Programming practice and writeups:

Combinatorics and Probability

Analytic Combinatorics

Outline of combinatorics content:

  • Combinatorial structures - use ordinary generating functions
  • Labelled structures - use exponential generating functions
  • Combinatorial parameters - use multivariate generating functions

Basic Combinatorics:

Generating Functions:

Excellent textbook: http://algo.inria.fr/flajolet/Publications/book.pdf

Graph Theory

Notes on graph theory:

Notes on data structures for graphs:

Numerics

Link: https://git.charlesreid1.com/cs/study-plan/src/master/TODONumerics.md

Numerics topics:

  • Linear Algebra and linear solvers
  • Solving Nonlinear Equations and root-finding
  • Interpolation and extrapolation
  • Integration and function evaluation
  • Minimization and maximization, optimization
  • Model-building

Languages and Tools

Languages:

  • Java
  • Python
  • Go (minimal)
  • C++ (minimal)
  • Scala (minimal)

Tool categories:

  • Built-in data structures (solid)
  • Extended data structures libraries (Pandas, Guava) and utility libraries (itertools, Apache Commons)
  • Numerical libraries (big numbers, factoring, exponents, root finding, linear solvers, nonlinear solvers)
  • Graph libraries

Infrastructure:

  • Testing infrastructure & best practices (JUnit)
  • Build tools (Bezel, Maven)

Study Resources

Math:

Algorithms:

Meta:

Flags

Computer Science





See also:

Data Structures
































Algorithms







CS/OldPage