首页 > 其他 > 详细

[CareerCup] 5.1 Insert Bits 插入位

时间:2015-08-10 09:23:37      阅读:124      评论:0      收藏:0      [点我收藏+]

 

5.1 You are given two 32-bit numbers, N and M, and two bit positions, land j. Write a method to insert M into N such that M starts at bit j and ends at bit i. You can assume that the bits j through i have enough space to fit all of M. That is, if M = 10011, you can assume that there are at least 5 bits between j and i. You would not, for example, have j = 3 and i = 2, because M could not fully fit between bit 3 and bit 2.
EXAMPLE
Input: N = 10000000000, M = 10011, i = 2, j = 6
Output: N = 10001001100

 

[CareerCup] 5.1 Insert Bits 插入位

原文:http://www.cnblogs.com/grandyang/p/4717019.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!