비트연산에 대해 질문합니다.

jinnyid의 이미지

1바이트...즉 8비트에서 01234567의 비트를 연산할려고합니다.

0번과 3번을 바꾸고 1번과 2번을 바꾸고 이런식으로 뒤에 4비트도 바꿀려고 하는데 정확히 잘 떨어지지가 않네요

아무래도 공부를 많이 해야할듯한데...좀 급해서요..알려주세요

낙엽의 이미지

typedef struct {
    unsigned char c;
    struct {
        unsigned char lb1:1;
        ....
        unsigned char hb4:1;
    } Bit;
} Byte;

이정도면 접근은 충분한듯 싶군요.. 수고하세요
dasomoli의 이미지

낙엽 wrote:
typedef struct {
    unsigned char c;
    struct {
        unsigned char lb1:1;
        ....
        unsigned char hb4:1;
    } Bit;
} Byte;

이정도면 접근은 충분한듯 싶군요.. 수고하세요

union 을 잘못 쓰신거 아닌가요?

typedef union {
    unsigned char c;
    struct {
        unsigned char lb1:1;
        ....
        unsigned char hb4:1;
    } Bit;
} Byte;


dasomoli의 블로그(http://dasomoli.org)
dasomoli = DasomOLI = Dasom + DOLI = 다솜돌이
다솜 = 사랑하옴의 옛 고어.
Developer! ubuntu-ko! 다솜돌이 정석
lifthrasiir의 이미지

리포트에 저런 류의 연산 과정을 적는 것이 주일 것 같지 않으므로 그냥 답-_-을 적습니다. 이 경우 unsigned char로 한정되어 있기 때문에 그냥 테이블을 써도 되고, 다음과 같은 코드를 써도 됩니다. (더 좋은 코드가 있을 지도 모르겠;)

unsigned char c = 0xac; // 01234567
c = ((c & 0xcc) >> 2) | ((c & 0x33) << 2); // 23016745
c = ((c & 0xaa) >> 1) | ((c & 0x55) << 1); // 32107654

이 경우 0x53이 나와야 정상이겠죠.

옛날에 올라온 도 참고해 보세요.

- 토끼군

덤: 그러고 보니 FFT에서 bit reverse가 쓰이네 -_-;

익명 사용자의 이미지

dasomoli wrote:
낙엽 wrote:
typedef struct {
    unsigned char c;
    struct {
        unsigned char lb1:1;
        ....
        unsigned char hb4:1;
    } Bit;
} Byte;

이정도면 접근은 충분한듯 싶군요.. 수고하세요

union 을 잘못 쓰신거 아닌가요?

typedef union {
    unsigned char c;
    struct {
        unsigned char lb1:1;
        ....
        unsigned char hb4:1;
    } Bit;
} Byte;

헉 실수를 -_-

댓글 달기

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
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.