Search:

Type: Posts; User: amsy

Search: Search took 0.01 seconds.

  1. Replies
    1
    Views
    965

    can anyone tell me if I'm thinking in the right...

    can anyone tell me if I'm thinking in the right line?
  2. Thread: please help!!

    by amsy
    Replies
    2
    Views
    992

    of course :cool: Thank you

    of course :cool: Thank you
  3. Replies
    1
    Views
    965

    can somone please help me with this code?

    This is the main code for a morse code files decoder. From my understanding, it checks each bit in the binary file, maps it against a decoding table to find its alphabet equivalence and then returns...
  4. Thread: please help!!

    by amsy
    Replies
    2
    Views
    992

    please help!! hexadecimal prblem

    Hi, the following is the main part of a decoder code which decodes files encoded in morse code. The files are binary based on the morse code definition of using dots and dashes. So for example "A" is...
  5. Replies
    5
    Views
    9,420

    I've managed to come up with the following code...

    I've managed to come up with the following code so far:

    char *decode_file(char *input, int inputsize, int *outputsize)
    {
    struct encoding encoding_table[27];
    char *outputbuf;
    int...
  6. Replies
    5
    Views
    9,420

    C decoder for files encoded in Morse code

    I’ve used a simple variable length Huffman encoding. As the dot is the most common symbol in morse, we encode as:

    Symbol Encoding
    dot (“.”) 0
    dash (“-”) 10
    space (“ ”) 11

    Thus the letters of...
Results 1 to 6 of 6