二进制表示中质数个计算置位(LeetCode刷题 C语言)

2024-03-30 03:38

本文主要是介绍二进制表示中质数个计算置位(LeetCode刷题 C语言),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

题目描述:

给定两个整数 L 和 R ,找到闭区间 [L, R] 范围内,计算置位位数为质数的整数个数。

(注意,计算置位代表二进制表示中1的个数。例如 21 的二进制表示 10101 有 3 个计算置位。还有,1 不是质数。)

示例 1:

输入: L = 6, R = 10
输出: 4
解释:
6 -> 110 (2 个计算置位,2 是质数)
7 -> 111 (3 个计算置位,3 是质数)
9 -> 1001 (2 个计算置位,2 是质数)
10-> 1010 (2 个计算置位,2 是质数)

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/prime-number-of-set-bits-in-binary-representation

结题思路:

使用联合,赋值给一个联合内部的一个值,然后使用位运算符判断某一位的具体指,然后相加,判断。

typedef union temp
{struct bit_s{unsigned int1:1;unsigned int2:1;unsigned int3:1;unsigned int4:1;unsigned int5:1;unsigned int6:1;unsigned int7:1;unsigned int8:1;unsigned int9:1;unsigned int10:1;unsigned int11:1;unsigned int12:1;unsigned int13:1;unsigned int14:1;unsigned int15:1;unsigned int16:1;unsigned int17 : 1;unsigned int18 : 1;unsigned int19 : 1;unsigned int20 : 1;unsigned int21 : 1;unsigned int22 : 1;unsigned int23 : 1;unsigned int24 : 1;unsigned int25 : 1;unsigned int26 : 1;unsigned int27 : 1;unsigned int28 : 1;unsigned int29 : 1;unsigned int30 : 1;unsigned int31 : 1;unsigned int32 : 1;}bit;unsigned int num;
} UNION;int countPrimeSetBits(int L, int R){UNION test;int i, returnValue, j;returnValue = 0;for(i = L; i <= R ; ++i){test.num = i;j = test.bit.int1 + test.bit.int2 + test.bit.int3 +  test.bit.int4 + test.bit.int5 + test.bit.int6 +  test.bit.int7 + test.bit.int8 + test.bit.int9 +  test.bit.int10 +  test.bit.int11 + test.bit.int12 + test.bit.int13 +  test.bit.int14 + test.bit.int15 + test.bit.int16 + test.bit.int17 + test.bit.int18 + test.bit.int19 +  test.bit.int20 + test.bit.int21 + test.bit.int22 + test.bit.int23 +  test.bit.int24 + test.bit.int25 + test.bit.int26 + test.bit.int27 + test.bit.int28 + test.bit.int29 +  test.bit.int30 + test.bit.int31 + test.bit.int32;if(j == 2 || j == 3|| j == 5 || j == 7 || j == 11 || j == 13 || j == 17 || j == 19 || j == 23 || j == 29){++returnValue;}}return returnValue;
}

这篇关于二进制表示中质数个计算置位(LeetCode刷题 C语言)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/860380

相关文章

哈希leetcode-1

目录 1前言 2.例题  2.1两数之和 2.2判断是否互为字符重排 2.3存在重复元素1 2.4存在重复元素2 2.5字母异位词分组 1前言 哈希表主要是适合于快速查找某个元素(O(1)) 当我们要频繁的查找某个元素,第一哈希表O(1),第二,二分O(log n) 一般可以分为语言自带的容器哈希和用数组模拟的简易哈希。 最简单的比如数组模拟字符存储,只要开26个c

科研绘图系列:R语言扩展物种堆积图(Extended Stacked Barplot)

介绍 R语言的扩展物种堆积图是一种数据可视化工具,它不仅展示了物种的堆积结果,还整合了不同样本分组之间的差异性分析结果。这种图形表示方法能够直观地比较不同物种在各个分组中的显著性差异,为研究者提供了一种有效的数据解读方式。 加载R包 knitr::opts_chunk$set(warning = F, message = F)library(tidyverse)library(phyl

透彻!驯服大型语言模型(LLMs)的五种方法,及具体方法选择思路

引言 随着时间的发展,大型语言模型不再停留在演示阶段而是逐步面向生产系统的应用,随着人们期望的不断增加,目标也发生了巨大的变化。在短短的几个月的时间里,人们对大模型的认识已经从对其zero-shot能力感到惊讶,转变为考虑改进模型质量、提高模型可用性。 「大语言模型(LLMs)其实就是利用高容量的模型架构(例如Transformer)对海量的、多种多样的数据分布进行建模得到,它包含了大量的先验

poj 1113 凸包+简单几何计算

题意: 给N个平面上的点,现在要在离点外L米处建城墙,使得城墙把所有点都包含进去且城墙的长度最短。 解析: 韬哥出的某次训练赛上A出的第一道计算几何,算是大水题吧。 用convexhull算法把凸包求出来,然后加加减减就A了。 计算见下图: 好久没玩画图了啊好开心。 代码: #include <iostream>#include <cstdio>#inclu

uva 1342 欧拉定理(计算几何模板)

题意: 给几个点,把这几个点用直线连起来,求这些直线把平面分成了几个。 解析: 欧拉定理: 顶点数 + 面数 - 边数= 2。 代码: #include <iostream>#include <cstdio>#include <cstdlib>#include <algorithm>#include <cstring>#include <cmath>#inc

uva 11178 计算集合模板题

题意: 求三角形行三个角三等分点射线交出的内三角形坐标。 代码: #include <iostream>#include <cstdio>#include <cstdlib>#include <algorithm>#include <cstring>#include <cmath>#include <stack>#include <vector>#include <

XTU 1237 计算几何

题面: Magic Triangle Problem Description: Huangriq is a respectful acmer in ACM team of XTU because he brought the best place in regional contest in history of XTU. Huangriq works in a big compa

leetcode-24Swap Nodes in Pairs

带头结点。 /*** Definition for singly-linked list.* public class ListNode {* int val;* ListNode next;* ListNode(int x) { val = x; }* }*/public class Solution {public ListNode swapPairs(L

leetcode-23Merge k Sorted Lists

带头结点。 /*** Definition for singly-linked list.* public class ListNode {* int val;* ListNode next;* ListNode(int x) { val = x; }* }*/public class Solution {public ListNode mergeKLists

C++ | Leetcode C++题解之第393题UTF-8编码验证

题目: 题解: class Solution {public:static const int MASK1 = 1 << 7;static const int MASK2 = (1 << 7) + (1 << 6);bool isValid(int num) {return (num & MASK2) == MASK1;}int getBytes(int num) {if ((num &