标题: Leetcode每日一题 —— 190. 颠倒二进制位
作者: #魔法师
板块: #开发调优
编号:
帖子: https://linux.do/t/topic/1619092
时间: 2026-02-16 09:25:07
摘要:
作者: #魔法师
板块: #开发调优
编号:
1619092帖子: https://linux.do/t/topic/1619092
时间: 2026-02-16 09:25:07
摘要:
力扣 LeetCode
190. 颠倒二进制位 - 力扣(LeetCode)
190. 颠倒二进制位 - 颠倒给定的 32 位有符号整数的二进制位。
示例 1:
输入:n = 43261596
输出:964176192
解释:
整数 二进制 43261596 00000010100101000001111010011100 964176192 00111001011110000010100101000000
示例 2:
输入:n = 2147483644
输出:1073741822
解释:
整数 二进制 2147483644...
思路
整形一共32位,所以循环32次,每次在上个循环的结果左移一位,合并原数当前最后一位。
代码
class Solution {
public int reverseBits(int n) {
int ans = 0;
// 反转后0也要补,所以整形一定计算32次
for (int i = 0; i < 32; i++) {
// 之前结果移位并加上当前位
ans = (ans << 1) | (n & 1) ;
n >>= 1;
}
return ans;
}
}
标题: 童年的快乐回忆
作者: #慕书
板块: #活动
编号:
帖子: https://linux.do/t/topic/1619097
时间: 2026-02-16 09:26:17
摘要:
作者: #慕书
板块: #活动
编号:
1619097帖子: https://linux.do/t/topic/1619097
时间: 2026-02-16 09:26:17
摘要:
祝大家新年快乐,马年大吉
标题: 渝尔巴人开始享用餐前甜点
作者: #sheng zhang
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/1619099
时间: 2026-02-16 09:26:29
摘要:
作者: #sheng zhang
板块: #搞七捻三
编号:
1619099帖子: https://linux.do/t/topic/1619099
时间: 2026-02-16 09:26:29
摘要:
大年三十醒来先享用两个大汤圆,然后开始翻山越岭穿越
所以,佬们过年早餐都吃啥呢
最后祝各位佬新年快乐,身体健康,心想事成!
标题: 红包滚滚来,烟花爆竹脆脆响
作者: #小滕先生
板块: #活动
编号:
帖子: https://linux.do/t/topic/1619103
时间: 2026-02-16 09:28:31
摘要:
作者: #小滕先生
板块: #活动
编号:
1619103帖子: https://linux.do/t/topic/1619103
时间: 2026-02-16 09:28:31
摘要:
回家不是发红包就是收红包,这是每个地方都有的吧。
当然,也少不了烟花爆竹,哈哈哈
标题: 新年快乐!除夕快乐
作者: #福福
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/1619113
时间: 2026-02-16 09:30:11
摘要:
作者: #福福
板块: #搞七捻三
编号:
1619113帖子: https://linux.do/t/topic/1619113
时间: 2026-02-16 09:30:11
摘要:
今天就是除夕啦,祝大家除夕安康,阖家团圆,愿我们新的一年,不慌不忙,平安喜乐,有钱有闲,万事顺意,岁岁长安宁
标题: chatgpt5.3究竟什么时候出
作者: #555E
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/1619140
时间: 2026-02-16 09:31:29
摘要:
作者: #555E
板块: #搞七捻三
编号:
1619140帖子: https://linux.do/t/topic/1619140
时间: 2026-02-16 09:31:29
摘要:
只出了个codex版,app网页版啥时候出啊,app网页版的调过的5.2也比api的5.2要好用的多得多,api除了超长任务代码其他感觉都没有很好用
标题: 直接上索尼电视有点困难,佬友有其他推荐吗?
作者: #Fengli88
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/1619143
时间: 2026-02-16 09:32:12
摘要:
作者: #Fengli88
板块: #搞七捻三
编号:
1619143帖子: https://linux.do/t/topic/1619143
时间: 2026-02-16 09:32:12
摘要:
过年回来想给父母换一个电视,虽然电视直接无脑索尼,但是预算有限,希望电视可以稍微大一些,80寸左右就可以,佬友还有其他推荐吗?
标题: 请问这个IP段是哪个商家在卖149.119.54.XXX
作者: #莎拉
板块: #开发调优
编号:
帖子: https://linux.do/t/topic/1619165
时间: 2026-02-16 09:37:48
摘要:
作者: #莎拉
板块: #开发调优
编号:
1619165帖子: https://linux.do/t/topic/1619165
时间: 2026-02-16 09:37:48
摘要:
请问这个IP段是哪个商家在卖149.119.54.XXX
标题: 新年快乐~~
作者: #haha647
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/1619168
时间: 2026-02-16 09:38:16
摘要:
作者: #haha647
板块: #搞七捻三
编号:
1619168帖子: https://linux.do/t/topic/1619168
时间: 2026-02-16 09:38:16
摘要:
祝大家新年快乐!!!
标题: dots.ocr更新1.5版本 SOTA解析水平 支持图表转换成SVG代码
作者: #fengchris
板块: #前沿快讯
编号:
帖子: https://linux.do/t/topic/1619172
时间: 2026-02-16 09:40:03
摘要:
作者: #fengchris
板块: #前沿快讯
编号:
1619172帖子: https://linux.do/t/topic/1619172
时间: 2026-02-16 09:40:03
摘要:
权重:https://huggingface.co/collections/rednote-hilab/dotsocr-15
仓库:https://github.com/rednote-hilab/dots.ocr
演示:https://dotsocr.xiaohongshu.com/
标题: 除夕快乐,马到成功
作者: #TeQIng
板块: #活动
编号:
帖子: https://linux.do/t/topic/1619180
时间: 2026-02-16 09:41:39
摘要:
作者: #TeQIng
板块: #活动
编号:
1619180帖子: https://linux.do/t/topic/1619180
时间: 2026-02-16 09:41:39
摘要:
祝佬们除夕快乐,马到成功,顺顺顺!
标题: 今天全国统一洗头
作者: #wlisboy
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/1619209
时间: 2026-02-16 09:50:50
摘要:
作者: #wlisboy
板块: #搞七捻三
编号:
1619209帖子: https://linux.do/t/topic/1619209
时间: 2026-02-16 09:50:50
摘要:
今天你洗头了吗
标题: koyeb 的服务好像炸了
作者: #BHznJNs
板块: #开发调优
编号:
帖子: https://linux.do/t/topic/1619210
时间: 2026-02-16 09:51:04
摘要:
作者: #BHznJNs
板块: #开发调优
编号:
1619210帖子: https://linux.do/t/topic/1619210
时间: 2026-02-16 09:51:04
摘要:
今天早上打开我自己部署在 koyeb 的服务发现只出现如下提示:
upstream connect error or disconnect/reset before headers. retried and the latest reset reason: remote connection failure, transport failure reason: TLS_error:|268436501:SSL routines:OPENSSL_internal:SSLV3_ALERT_CERTIFICATE_EXPIRED:TLS_error_end
在去掉我的自定义域名,直接访问 koyeb 自带的域名后发现问题依旧。估计是 koyeb 的 https 证书过期了
标题: 嘟嘟嘟嘟~~~大家晚上看春晚吗
作者: #relax
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/1619213
时间: 2026-02-16 09:52:56
摘要:
作者: #relax
板块: #搞七捻三
编号:
1619213帖子: https://linux.do/t/topic/1619213
时间: 2026-02-16 09:52:56
摘要:
还是有什么活动呢
标题: 大家现在的除夕一般怎么过?
作者: #Hugo
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/1619217
时间: 2026-02-16 09:54:20
摘要:
作者: #Hugo
板块: #搞七捻三
编号:
1619217帖子: https://linux.do/t/topic/1619217
时间: 2026-02-16 09:54:20
摘要:
现在基本上就是吃完饭,大家个个玩手机,有的人看春晚。我看拜年祭。 抢抢红包什么的
标题: 金马奔腾迎新岁,祝佬友们马年安康顺遂,福暖四季,事业腾飞
作者: #周二两
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/1619220
时间: 2026-02-16 09:55:53
摘要:
作者: #周二两
板块: #搞七捻三
编号:
1619220帖子: https://linux.do/t/topic/1619220
时间: 2026-02-16 09:55:53
摘要:
祝大家新的一年 顺顺利利 发大财!
标题: 除夕快乐佬友们
作者: #Rocky
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/1619222
时间: 2026-02-16 09:56:25
摘要:
作者: #Rocky
板块: #搞七捻三
编号:
1619222帖子: https://linux.do/t/topic/1619222
时间: 2026-02-16 09:56:25
摘要:
祝佬友们除夕快乐喔,也祝新年万事如意!
标题: zeroclaw是不是不能对服务器进行操作
作者: #烟雨花
板块: #开发调优
编号:
帖子: https://linux.do/t/topic/1619223
时间: 2026-02-16 09:58:30
摘要:
作者: #烟雨花
板块: #开发调优
编号:
1619223帖子: https://linux.do/t/topic/1619223
时间: 2026-02-16 09:58:30
摘要:
这个蠢货给我气坏了
让他给我对服务器进行操作总是说无法做到
标题: 童年的年味就是放烟花
作者: #CureBlue
板块: #活动
编号:
帖子: https://linux.do/t/topic/1619225
时间: 2026-02-16 09:59:26
摘要:
作者: #CureBlue
板块: #活动
编号:
1619225帖子: https://linux.do/t/topic/1619225
时间: 2026-02-16 09:59:26
摘要:
小时候只有春节期间才能放烟花,天天盼着,那时很喜欢烟花的那股硝烟味,感觉这就是童年的年味