Tagged Questions
6
votes
2answers
565 views
Important topics in the theory of computation
During my studies at university I had to learn a lot about the theory of computation. I studied the subject for three terms. I had a hard time and I have to admit that I forgot a lot.
I am wondering ...
5
votes
4answers
747 views
Example problems not in P nor in NP-complete but in NP
I have a course called Algorithm Analysis at college, where we're currently studying the different complexity classes -- P, NP, NP-hard etc.
We've already discussed NP-complete problems as the ...
5
votes
7answers
437 views
How to write an enumeration of all computable functions?
Motivation: I'd like to be able to use toy functional programming in languages without first-order functions, by using natural numbers instead of functions.
A universal function is a function f : N ...
2
votes
3answers
87 views
there's a way to sort a regular expressions list by specificity?
I'm looking for something that allows me to sort a list of regular expression,
or some documentation and research,
according to their specificity/strictness
/[a-z]+/ // most strict
...