vote up 3 vote down star

I'm fairly new to Scheme and am attempting to learn it on my own from scratch. I'm stuck on the syntax of this problem. I know that if I want to find out if a number is a power of 2, in C for instance, I would simply do:

return (x & (x - 1)) == 0;

which would return true or false. How would I be able to convert this into a couple simple lines in Scheme?

flag

3 Answers

vote up 5 vote down

I'll give you a hint since you're trying to learn the language.

Scheme has a function called (bitwise-and ...) which is equivalent to the & operator in C (there is also (bitwise-xor ...), (bitwise-not ..), etc., which do the expected thing).

(Here is the documentation of the (bitwise-and ...) function)

Given that, would you be able to translate what you've written in your question into Scheme code?

N.B: For a problem like this, you really don't need to resort to bitwise operations when using Scheme. Realistically, you should be writing a (possibly probably tail) recursive function that will compute this for you.

link|flag
I see that the code was written out as an answer here after I posted. Oh well. – Andrew Song Nov 4 at 16:52
2  
I saw this first before I refreshed the page and saw the rest, and it did help, so thanks anyways! – Evan Parker Nov 4 at 16:54
vote up 1 vote down

Scheme also has biwise operators.

But if you really want to develop your scheme skills, you should write a function that decides if an integer is a power of 2 by recursively dividing it by 2 until you are left with either 2 or with an odd number. This would be very inefficient, but really cool nonetheless.

link|flag
1  
Long, but very cool nonetheless – Evan Parker Nov 4 at 16:57
It would be shorter if I wrote it in Scheme, but that would have deprived you of the joy of coding it yourself. – Dima Nov 4 at 16:59
vote up 3 vote down

You can do this using a built in bitwise operator.

(define (pow2? x)
  (= (bitwise-and x (- x 1))
     0))
link|flag
1  
(You should probably name the function (pow2? ..) rather than (pow2 ..) since they imply different things. – Andrew Song Nov 4 at 16:51
2  
@Andrew, @Dima: I'm also fairly new to Scheme, so I wasn't aware of this convention. I fixed my code. Thanks. – Bill the Lizard Nov 4 at 16:53
1  
This makes sense. Since the bitwise operator is built in, do I not need to import any libraries in order for it to leave me alone about errors? – Evan Parker Nov 4 at 16:56
1  
@Evan: I don't know if it's built in to every Scheme. I'm using DrScheme with the language set to Module and not getting any errors or warnings. – Bill the Lizard Nov 4 at 16:59
1  
The math jargon for “power of two” is “impolite number.” – sgm Nov 4 at 17:22
show 3 more comments

Your Answer

Get an OpenID
or

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