本文介绍了确定比特的组合的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

说我有一个类似下面的词典


{1:''one'',2:''two'',4:''three'',8: ''四'',16:''五'等等......}
我给了一些数字,比如22,25和9.我想确定

键,2的幂,包含数字。


Ex。 22 = 16 + 4 + 2

25 = 16 + 8 + 1

9 = 8 + 1

....等等.. 。


如何获得这些密钥?

Say I have a dictionary like the following

{1:''one'',2:''two'',4:''three'',8:''four'',16:''five'', etc...}

and I am given some numbers, say 22, 25, and 9. I want to determine the
keys, powers of 2, that comprise the number.

Ex. 22 = 16+4+2
25 = 16+8+1
9 = 8+1
....etc...

How do I get these keys?

推荐答案




这听起来像家庭作业,所以我只想在这里给出一个提示:



This sounds suspiciously like a homework, so I''m just going to give a hint here:




希望这是有帮助的。


史蒂夫



Hope this is helpful.

Steve





这篇关于确定比特的组合的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-30 11:09