A tag is a keyword or label that categorizes your question with other, similar questions. Using the right tags makes it easier for others to find and answer your question.
Type to find tags: |
algorithms× 1038
Questions related to design and analysis of algorithms
|
complexity-theory× 538
Questions related to the (computational) complexity of solving problems
|
formal-languages× 370
Questions related to formal languages, grammars, and automata theory
|
graph-theory× 272
Questions about properties of and problems on graphs, discrete data structures that have the form of nodes connected by edges, that is networks.
|
terminology× 270
Questions about how specific notions have to be understood as well as conventions of notation.
|
computability× 224
Questions related to computability theory, a.k.a. recursion theory
|
reference-request× 212
if you ask for pointers to material for self-study.
|
algorithm-analysis× 211
Questions about the science and art of determining properties of algorithms, often including correctness, runtime and space usage.
|
data-structures× 201
Questions about ways of storing data so that it can be used advantageously by algorithms.
|
graphs× 188
Questions about graphs, discrete structures of nodes which are connected by edges. Popular flavors are trees and networks with edge capacity.
|
regular-languages× 188
Questions about properties of the class of regular languages and individual languages.
|
time-complexity× 185
the amount of time resources (number of atomic operations or machine steps)
required to solve a problem or run an algorithm with respect to the input size.
|
turing-machines× 181
Questions about Turing machines, a theoretical model of mechanical computation capable of simulating any computer program.
|
context-free× 178
Questions about the set of languages (equivalently) described by context-free grammars or accepted by (non-deterministic) pushdown automata.
|
automata× 158
Questions about mathematical devices that read an input stream symbol by symbol and use a state transition map to produce an output stream, maybe using secondary storage.
|
np-complete× 152
Questions about the hardest problems in NP, i.e. of those that can be solved in polynomial time by nondeterministic Turing machines.
|
formal-grammars× 144
Questions about formal grammars, generative descriptions of formal languages.
|
asymptotics× 142
Questions about asymptotic notations and analysis
|
reductions× 140
Questions about finding mappings between problems that allow solving one problem using a solution of another one.
|
finite-automata× 139
Questions about finite automata, an elementary automaton model with finite memory. It is equivalent to regular languages and the basis for many more complex models.
|
programming-languages× 127
Questions related to design, implementation, and analysis of programming languages
|
logic× 119
Questions related to logic and its use in computer science
|
optimization× 115
Questions about problems that entail selecting the best element from some set of available alternatives, and methods to solve them.
|
machine-learning× 108
Questions about computer algorithms that automatically discover patterns in data and make good decisions based on them.
|
proof-techniques× 104
Questions about methods and techniques for proving theorems.
|
combinatorics× 95
Questions related to combinatorics and discrete mathematical structures
|
runtime-analysis× 93
Questions about methods for estimating the increase in runtime of an algorithm as the input size increases.
|
undecidability× 86
Questions about problems which cannot be solved by any Turing machine.
|
computational-geometry× 80
Questions algorithmic solutions of geometric problems.
|
artificial-intelligence× 80
Questions about design and properties of agents that act in a dynamic environment and make decisions towards some goal without user control.
|
recurrence-relation× 74
a definition of a sequence where later elements are expressed as a function of earlier elements.
|
probability-theory× 71
Questions about the branch of mathematics concerned with modelling and analysing random phenomena.
|
operating-systems× 69
Questions about the principles of software that interfaces between hardware and applications.
|
computer-architecture× 68
Organization and design of computer hardware.
|
dynamic-programming× 64
Questions about problems that can be solved by combining recursively obtained solutions of subproblems.
|
binary-trees× 63
a tree in which each node has no more than two children
|