2진수->10진수 변환 시, 성능이 제일 빠른 방법

hoollahoop의 이미지

성능을 최우선으로 고려해서 2진수->10진수로
변환하고 싶습니다.

별 방법이 없나요?
10진수->2진수일때는 비트연산쓰면 되는데..
2진수->10진수일때는 비트연산이 가능한가요?
잘 모르겠습니다.

그냥 단순히 자리수 세서 2^4 * 1 + 2^2 * 1 ... 이런식으로
해야하는 방법밖에 없는지..

좋은 방법 있으면 좀 알려주세요 ^^

elien의 이미지

비트연산 가능합니다.
2진수 11010101 라고 하면,
tmp = (1 << 7) | (1 << 6) | (0 << 5) | (1 << 4) | (0 << 3) | (1 << 2) | (0 << 1) | (1 << 0)
이런 식으로 하시면 될 것 같아요~
컴파일러가 얼마나 최적화를 해주느냐에 따라 달라지겠지만, 1 * 2^4 보단 (1 << 4) 가 더 빠르지 않을까 하는 생각을;;

훗, 못 믿겠나?

ksil의 이미지

8 Bit이하라는 전제 조건이 있다면
그리고 메모리가 상관 없다면
lookup table 이 가장 빠를것 같군요.

lifthrasiir의 이미지

hoollahoop wrote:
성능을 최우선으로 고려해서 2진수->10진수로
변환하고 싶습니다.

별 방법이 없나요?
10진수->2진수일때는 비트연산쓰면 되는데..
2진수->10진수일때는 비트연산이 가능한가요?
잘 모르겠습니다.

그냥 단순히 자리수 세서 2^4 * 1 + 2^2 * 1 ... 이런식으로
해야하는 방법밖에 없는지..

좋은 방법 있으면 좀 알려주세요 ^^

변환의 시점이 컴파일 시점이느냐 (예를 들어서 BIT(10110011)같이 쓰고 알아서 179라고 변환해 주는...) 아니면 실행 시점(30이라는 숫자를 주면 "11110"이라는 문자열로 변환하는...)이냐에 따라서 상황이 다를 것 같습니다. 좀 더 자세히 질문을 적어 주세요.

- 토끼군

덤: 매크로 얘기라면 http://bbs.kldp.org/viewtopic.php?p=160414#160414 를 참고하시길...

익명 사용자의 이미지

int bin2dec(const char * str)
{
int ret = 0;
while (*str)
{
ret *= 2;
if ( *str == '1' ) { ret += 1; }
}
return ret;
}

char *str = "11010101";
printf("%d", bin2dec(str));

익명 사용자의 이미지

앗차차 좀 틀렸군요

int bin2dec(const char * str)
{
int ret = 0;
while (*str)
{
ret *= 2;
if ( *str == '1' ) { ret += 1; }
++str;
}
return ret;
}

char *str = "11010101";
printf("%d", bin2dec(str));

익명 사용자의 이미지

c++로 작성하시고, 변환이 컴파일타임이라면 템플릿 메타프로그래밍을 쓰면 되겠군요.

C++ template metaprogramming의 예제

template<unsigned long N>
struct binary 
{
    static unsigned const value
        = binary<N/10>::value << 1 | N%10
};

template <>
struct binary<0>
{
    static unsigned const value = 0;
};

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.