Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I was reading about prime test algorithm and find the AKS primality test, then i ask my self if this algorithm could be implement in scheme or in c++?.

Has anyone tried implementing the AKS test?

share|improve this question
2  
google, first hit with "AKS c++" – Thomas Berger Jun 27 '11 at 18:46
You might want to rephrase your question to: "Has anyone tried implementing the AKS test?" – Jacob Jun 27 '11 at 18:48

3 Answers

Scheme and C++ (and Racket and Pascal and Logo and Modula-3 and Postscript) are all Turing equivalent, meaning that they can all be used to simulate each other, and hence that they can all compute the same things.

So: yes, you can implement this in Scheme. Or any other Turing-complete language.

share|improve this answer
2  
Thank you. It's so frustrating when people ask if X can be implemented in language Y without realizing that the answer is always yes for any Turing-complete language. – pg1989 Jun 27 '11 at 20:51
1  
:D Thats a good answer. Excuse me, i'm new in this kind of things, be tolerant @pg1989. – Carlochess Jun 28 '11 at 3:13
1  
No worries. Everyone starts from 0. – pg1989 Jun 28 '11 at 12:35

Of course it can. Google helps here.

C++ implementations

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.