c语言位运算符的使用_C语言程序使用位运算符检查给定数字是否为回文

c语言位运算符的使用

Problem statement: Write a C program to check whether a number (binary representation) is palindrome or not using bitwise operators. Maximum input is 255..

问题陈述:编写一个C程序以使用按位运算符检查数字(二进制​​表示形式)是否为回文。 最大输入为255

Solution: We can use bitwise operator here to solve the problem.

解决方案:我们可以在这里使用按位运算符来解决问题。

Pre-requisite: Input number n

前提条件 :输入数字n

Input Example:

输入示例:

    Input number: 24
Binary representation: 00011000
Thus it's a palindrome
Input number 153:
Binary representation: 10011001
Thus it's a palindrome
Input number: 25
Binary representation: 00011001
Thus it's not a palindrome

Algorithm:

算法:

1)  Take the input.
2)  Create an array of length 8 to store 8 bit binary representation 
of input number
3)  Use bitwise operators to convert into binary from
a)  Initialize i to 7 (8-1)
b)  Find ith bit & store in the array
array[i]=n & 1
c)  Right shift n & decrement i
n=n>>1
d)  IF n=0
Break
ELSE
Repeat step b-d
4)  Check the array where the binary representation is stored, 
for palindrome
a)  Set j= 0 & k=7 (8-1, 8 is the MAX SIZE)
b)  IF (array [j]!= array [k])
It's not a palindrome
c)  IF j < k
Increment j& decrement k
Repeat b, c
ELSE
It's a palindrome

Example with explanation:

带有说明的示例:

Input no: 24
Converting to binary representation using bitwise operator
Initially,
N=24
Array[8]={0};
0	0	0	0	0	0	0	0 (LSB)
i=7
-----------------------------------------------------------------
first iteration,
array[7]=n&1 = 0 (refer to bitwise operators and 
their working for understanding the outcome)
0	0	0	0	0	0	0	0 (current bit)
n=n>>1=12
i=6
-----------------------------------------------------------------
second iteration,
array [6]=n&1 = 0 
0	0	0	0	0	0	0 (current bit)	0 
n=n>>1=6
i=5
-----------------------------------------------------------------
third iteration,
array [5]=n&1 = 0 
0	0	0	0	0	0 (current bit)	0 	0 
n=n>>1=3
i=4
-----------------------------------------------------------------
fourth iteration,
array [4]=n&1 = 1 
0	0	0	0	1(current bit)	0 	0 	0 
n=n>>1=1
i=3
-----------------------------------------------------------------
fifth iteration,
array [3]=n&1 = 1 
0	0	0	1 (current bit)	1	0 	0 	0 
n=n>>1=0
i=2
-----------------------------------------------------------------
sixth iteration,
n=0
so no more processing
thus the array finally becomes which is 
the binary representation
0	0	0	1 	1	0 	0 	0  (LSB)
Checking palindrome
Initially,
j=0 & k=7 (8-1)
-----------------------------------------------------------------
First iteration
Array[j] == array [k] (both 0)
j=j+1=1
k=k-1=6
j<k
-----------------------------------------------------------------
Second iteration
Array[j] == array [k] (both 0)
j=j+1=2
k=k-1=5
j<k
-----------------------------------------------------------------
Third iteration
Array[j] == array [k] (both 0)
j=j+1=3
k=k-1=4
j<k
-----------------------------------------------------------------
Fourth iteration
Array[j] == array [k] (both 1)
j=j+1=4
k=k-1=3
j>k
thus, stops processing & prints it's a palindrome

C Implementation

C实施

#include <stdio.h>
#define SIZE 8
int main()
{
unsigned int n;
printf("enter the no ( max range 255)\n");
scanf("%d",&n);
int c[SIZE]={0};
int i=SIZE-1;
printf("binary representation is: ");
while(n!=0){
c[i--]=n&1;
n=n>>1;
}
for(int j=0;j<SIZE;j++)
printf("%d",c[j]);
printf("\n");
for(int j=0,k=SIZE-1;j<k;j++,k--){
if(c[j]!=c[k]){
printf("Not palindrome\n");
return 0;
}
}
printf("it's palindrome\n");
return 0;
}

Output

输出量

First run:
enter the no ( max range 255)
153
binary representation is: 10011001
it's palindrome
Second run:
enter the no ( max range 255)
24
binary representation is: 00011000
it's palindrome
Third run:
enter the no ( max range 255)
-8
binary representation is: 11111000
Not palindrome 

翻译自: https://www.includehelp.com/c-programs/check-number-is-palindrome-or-not-using-bitwise-operator.aspx

c语言位运算符的使用

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/543639.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

解析取值_圆锥曲线——高中解析几何全归纳

这是一系列文章&#xff0c;我将在接下来了80多天&#xff0c;尽力把理科比较难的大题题型全部归纳一下然后在最后我会告诉做解析几何的窍门&#xff0c;让你的解析几何不再没有头绪&#xff0c;拿到既可做全文干货&#xff0c;不掺水&#xff0c;可以说总结了解析几何中你能遇…

Tomcat版本与Servlet、JSP等版本的支持关系

2019独角兽企业重金招聘Python工程师标准>>> 转载于:https://my.oschina.net/garyxiong/blog/624619

php 随机两位小数数_使用8086微处理器找出两个8位N数数组

php 随机两位小数数Problem statement: 问题陈述&#xff1a; Write a program in 8086 microprocessor to find out the sum of two arrays of 8-bit n numbers, where size “n” is stored at offset 500 and the numbers of first array are stored from offset 501 and t…

人类一败涂地做图教程_绘画步骤_人类一败涂地鼠绘人物步骤与技巧_3DM单机

第一波根据自己喜欢的人物角色选好模型&#xff0c;模型选不好画出来就不像第二步 对模型进行上色 在上色时可选择对某一部位涂色第三步绘制人物服装细节&#xff0c;首先是起个大概的形状 &#xff0c;ALT镜头拉进&#xff0c;画笔最小化&#xff0c;然后利用底色扣细建议先从…

java向数组中增加新元素_用Java中的新元素替换List的给定索引处的元素

java向数组中增加新元素Given a list of the integers and we have to replace it an element from specified index with a new element in java. 给定一个整数列表&#xff0c;我们必须用Java中的新元素将其替换为指定索引中的一个元素。 To replace an element in the list…

微服务架构会和分布式单体架构高度重合吗

在最近的Microservices Practitioner Summit峰会上&#xff0c;来自Facebook的工程师Ben Christensen就目前正在普遍快速增长的分布式系统与二进制依赖关系的一种反面模式发表了自己的看法。\\Christensen谈到说&#xff0c;共享类库是整个服务运行过程中最需要的部分&#xff…

北京soul_Soul高智商情侣,机器人博士邂逅科技记者,跨越1200公里来相爱

她&#xff0c;是知名媒体的科技记者&#xff0c;平时往返于帝都各大互联网媒体峰会上&#xff0c;朋友圈都是各大互联网公司创始人大佬&#xff0c;用文字记录下互联网江湖的风云变化。他&#xff0c;是魔都top大学的工业机器人博士&#xff0c;像谢尔顿一样充满科学的奇思妙想…

数据库拆分字符串函数_PHP | 不使用库函数将逗号分隔的字符串拆分为数组

数据库拆分字符串函数Given a string with comma delimited, we have to split it into an array. 给定一个以逗号分隔的字符串&#xff0c;我们必须将其拆分为一个数组。 Example: 例&#xff1a; Input: "Google,Bing,Yahoo!,DuckDuckGo"Output:arrar of strings…

arduino 休眠 节能_Arduino低功耗掉电模式看门狗唤醒

&#xfeff;最近在做一个低功耗的设备&#xff0c;发射红外来检测前面1米以内左右的地方是否有人&#xff0c;纽扣电池供电&#xff0c;需要持续工作至少两年&#xff0c;因此&#xff0c;要求设备工作电流在ua级别。(1)红外发射接收由于一般的红外发射接收(下图所示)都会比较…

Android-Dialog

Android-AlertView 我的地址&#xff1a;https://github.com/kongqw/Android-AlertView 开源地址&#xff1a;https://github.com/saiwu-bigkoo/Android-AlertView

mysql卸载后重装失败_小筑教育BIM课堂-Revit100问 [第二期] | 软件卸载

1、Revit未卸载干净&#xff0c;导致安装失败&#xff0c;怎么办&#xff1f;答&#xff1a;方法1&#xff1a;利用官方软件卸载工具UninstallTool软件将剩余残留未卸载子程序卸载干净&#xff0c;之后再安装Revit。方法2&#xff1a;如果UninstallTool软件检索不到电脑上还有相…

hdu 5631 Rikka with Graph(图)

n个点最少要n-1条边才能连通&#xff0c;可以删除一条边&#xff0c;最多删除2条边&#xff0c;然后枚举删除的1条边或2条边&#xff0c;用并查集判断是否连通&#xff0c;时间复杂度为O&#xff08;n^3&#xff09; 这边犯了个错误&#xff0c; for(int i0;i<N;i){ fa[i]i;…

电机编码器调零步骤_蒂森电梯编码器整定和主机整定大全

CT 编码器整定操作步骤1. 断开电源&#xff0c;吊起轿厢&#xff0c;空开曳引轮钢丝绳。2. 取出主板 JP5 的 9 与 10.11.13 的线并短接一起。3. 送电后确认 KAS,KAD,继电器吸合&#xff0c;接触器 KM1,KM2,KM3 也吸合&#xff0c;抱闸自动张开。注&#xff1a;保证安全回路 102…

4 曝光_荣耀户外手表GS Pro曝光:超强续航 9月4日发布

8月21日消息&#xff0c;荣耀海外官微今日官宣&#xff0c;荣耀首款主打户外功能的手表&#xff0c;将于9月4日海外发布。从其预热海报来看&#xff0c;这款手表应该就是国内已官宣的荣耀GS Pro。因为两张海报中的手表新品外观一致&#xff0c;均采用三防设计&#xff0c;圆形表…

atitit.atiOrmStoreService 框架的原理与设计 part1  概述与新特性

atitit.atiOrmStoreService 框架的原理与设计 part1 概述与新特性 1. 新特性如下 支持生成sql在无数据库连接的情况下 2. Orm设计 主要的俩个以来service如下 Inject Dsl2sqlService dsl2sqlSvr; Inject DBX dbSvr; 作者:: 绰号:老哇的爪子 &#xff08; 全名&#xff1a;&…

lightgbm 保存模型 过大_机器学习之12—Lightgbm

Lightgbm模型和GBDT以及XGboost一样&#xff0c;都是基于决策树的boosting集成模型&#xff1b;Lightgbm是一个快速高效、低内存占用、高准确度、支持并行和大规模数据处理的数据科学工具。关于GBDT和XGboost的介绍可以参考&#xff1a;大饼&#xff1a;机器学习——提升算法(A…

python3 装饰器

2019独角兽企业重金招聘Python工程师标准>>> #!/usr/bin/env python # encoding: utf-8 # author: eddy # contact: 278298125qq.com # site: http://my.oschina.net/eddylinux # file: study_deco.py # time: 2016-02-28 12:06 # version: 1.0#基础知识 #### 第一…

判断是否大于_电动车是否属于机动车的辩论要点

现行国家标准GB/T 24158-2009在3.1章节中对电动摩托车与电动轻便摩托车进行了定义,但将要在2019年4月1日实施的新标准却删除了该定义.在09标准中对电动轻便摩托车进行了如下定义:所以说,大于20km/h或大于40kg的电动车为机动车.但是这个标准删除了故对于电动车是否属于机动车不应…

Vim常用按键操作学习

对于Vi的学习&#xff0c;在这里算是做个笔记&#xff0c;对于一些常用的命令记录下&#xff0c;以后在使用起来会更方便&#xff0c;便于以后查阅使用&#xff0c;而不需要再从去搜索。读到这你应该看出&#xff0c;这是一个笔记了&#xff0c;会比较干了。补充一句&#xff0…

c++局部对象是什么_程序员每日一题-GCROOT对象

每天一题&#xff0c;进步一点答案&#xff1a;ABCD解析首先了解一下什么是GCROOT。了解这个概念之前&#xff0c;我们先了解一下垃圾回收。简单来说&#xff0c;JVM中程序的对象都会在堆区占据一定空间&#xff0c;如果不再使用了&#xff0c;JVM就会把它清除掉。那么如何判定…