cpubbs论坛

 找回密码
 注册

QQ登录

只需一步,快速开始

LabVIEW+单片机学习套件全套教程资料下载[免费]LabVIEW论坛精华列表贴USB0816数据采集卡《LabVIEW宝典》
LabWindows/CVI论坛精华贴NET0816以太网数据采集卡RC0210远程设备授权系统 关闭关停锁定打开设备 户外分布式数据采集
NET1624低速高精度以太网数据采集卡WIFI0824SD无线WIFI网络数据采集卡脱机运行 SD存储 小尺寸微型 串口采集远程采集 安卓 手持移动采集 纪录仪
查看: 1416|回复: 0

十进制转bcd三种算法的比较[转贴]

[复制链接]
发表于 2004-11-6 02:25:05 | 显示全部楼层 |阅读模式
<B>十进制转bcd三种算法的比较(haotz)</B></P>
//
*********************************************************************
************

//  *     Function:  DecimalToBcdAscii
*
// * Description: Convert
decimal value to 3 digit BCD ASCII value *
//  
*******************************************************************************
**
unsigned char Hundreds,Tens,Ones;
void DecimalToBcdAscii(signed short DecimalValue)
{
    Hundreds = 0;
// Initialize BCD values
   Tens = 0;
   Ones = 0;
  
   Hundreds:
// Hundreds
     DecimalValue = DecimalValue - 100;
       if (DecimalValue &lt; 0)   
       {
          goto Tens1;
          }
       Hundreds = Hundreds + 1; // Increment
Hundreds count
       goto Hundreds;  
   Tens1:
// Tens
     DecimalValue = DecimalValue + 100;
   Tens2:
       DecimalValue = DecimalValue - 10;
       if (DecimalValue &lt; 0)   
       {
         goto Ones1;
         }
       Tens = Tens + 1; //
Increment Tens count
       goto Tens2;   
   Ones1:
// Ones
     DecimalValue = DecimalValue + 10;
   Ones2:
       DecimalValue = DecimalValue - 1;
       if (DecimalValue &lt; 0)   
       {
          goto AddAsciiOffset;
          }
       Ones = Ones + 1; //
Increment Ones count
       goto Ones2;   
    AddAsciiOffset:
// Add ASCII offset
       Hundreds = Hundreds + 48;
       Tens = Tens + 48;
       Ones = Ones + 48;
}
#include&lt;reg51.h&gt;
#include&lt;stdio.h&gt;
main()
{//clk=12Mhz
int i;
//算法1 耗时0.25s
for (i=0;i&lt;1000;i++)
DecimalToBcdAscii(i);
//算法2 耗时0.42s
for (i=0;i&lt;1000;i++)
{int t;
Hundreds=i/100;
t=i%100;
Tens=t/10;
Ones=i%10;
}
Hundreds = Hundreds + 48;
Tens = Tens + 48;
Ones = Ones + 48;
//算法3 耗时1.5s
for (i=0;i&lt;1000;i++)
{unsigned char buf[5];
sprintf(buf,"%3d",i);
}
}
您需要登录后才可以回帖 登录 | 注册

本版积分规则

Archiver|手机版|cpubbs论坛. ( 粤ICP备09171248号 )

GMT+8, 2025-4-4 14:14 , Processed in 1.507583 second(s), 7 queries , Gzip On, File On.

Powered by Discuz! X3.4

© 2001-2017 Comsenz Inc.

快速回复 返回顶部 返回列表