Thread: SIGN-UP: Text Compression/Decompression Contest

  1. #16
    Redundantly Redundant RoD's Avatar
    Join Date
    Sep 2002
    Location
    Missouri
    Posts
    6,331
    i want in : )

  2. #17
    Registered User
    Join Date
    Aug 2002
    Posts
    67
    I am in..not sure how to do this yet...but should be fun..

  3. #18
    Redundantly Redundant RoD's Avatar
    Join Date
    Sep 2002
    Location
    Missouri
    Posts
    6,331
    i'm a newb but its supposed to be a challenge right!

  4. #19
    Just because ygfperson's Avatar
    Join Date
    Jan 2002
    Posts
    2,490
    Originally posted by Ride -or- Die
    i'm a newb but its supposed to be a challenge right!
    depends on your definition of a challenge...

    basically, you write up a program that inputs text data (ie: words made of letters, maybe a hyphen, punctuation, spaces, newlines, and numbers) and outputs compressed data.

    WARNING: when handling data with a byte value of 13 or 10 (carriage return and line feed) it may cause things to mess up on some systems. i know this from experience with my huffman compression program i wrote a while ago. whenever possible, try to write and read in binary mode.

    i've added master5001 as a judge (which means no more judging positions) and all those who requested to be contestants as contestants.

    remember, you can submit your stuff; or look over the contest info at http://contests.cprogramming.com/

    Note: all judges must be competent in C and C++.
    Note: the Creativity criteria counts double.

    you're under no obligation. you don't have to send in anything, although i would like it. send stuff in even if you're not finished, or not sure it will go up against the others.

  5. #20
    Christian
    Join Date
    Mar 2002
    Posts
    612
    Quick question. does the file have to be decompresable?
    I shall call egypt the harmless dragon

    -Isaiah 30.7

  6. #21
    Green Member Cshot's Avatar
    Join Date
    Jun 2002
    Posts
    892
    Umm all right, sign me up. I'll whip out something real quick.

    *** thinks to self:
    void main()
    {
    goto compress;
    ....

    Try not.
    Do or do not.
    There is no try.

    - Master Yoda

  7. #22
    Just because ygfperson's Avatar
    Join Date
    Jan 2002
    Posts
    2,490
    Originally posted by Sentaku senshi
    Quick question. does the file have to be decompresable?
    yes. the compression must also be lossless; (ie: all data must be recovered intact).

    you must provide some way of decompressing the file you compressed in your program.

  8. #23
    Green Member Cshot's Avatar
    Join Date
    Jun 2002
    Posts
    892
    >> you must provide some way of decompressing the file you compressed in your program.

    Oh, so we're supposed to code up a decompression routine also? But the creativity and efficiency of the decompression has no part on the score right?
    Try not.
    Do or do not.
    There is no try.

    - Master Yoda

  9. #24
    S Sang-drax's Avatar
    Join Date
    May 2002
    Location
    Göteborg, Sweden
    Posts
    2,072
    I made a text compression program about a year ago.

    It is highly unportable though (written using DLLs, with a GUI written in Borland C++ Builder)

    Is such highly specialized code permitted?

    However, I guess it would it be cheating to participate with code made over a year ago.
    Last edited by Sang-drax : Tomorrow at 02:21 AM. Reason: Time travelling

  10. #25
    Just because ygfperson's Avatar
    Join Date
    Jan 2002
    Posts
    2,490
    Originally posted by Cshot
    >> you must provide some way of decompressing the file you compressed in your program.

    Oh, so we're supposed to code up a decompression routine also? But the creativity and efficiency of the decompression has no part on the score right?
    efficiency, yes, creativity, probably not.

    what good is a compression program when it can't decompress?
    Is such highly specialized code permitted?
    depends...

    you cannot use any uncommon, 3rd party libraries. you can use code you have written before at any time. using DLL's will wreck your portability score. and there's the issue of actually compiling the program...

    please don't send it that entry. though it's legal, chances are such an entry would get a low score.

  11. #26
    Redundantly Redundant RoD's Avatar
    Join Date
    Sep 2002
    Location
    Missouri
    Posts
    6,331
    i'm in , lets have some fun

  12. #27
    Just because ygfperson's Avatar
    Join Date
    Jan 2002
    Posts
    2,490
    yep. let's.

    reminder that the thing is due a week from tomorrow, or October 10.

  13. #28
    Banal internet user
    Join Date
    Aug 2002
    Posts
    1,380
    Waaaaaaaait! *hold hand up*

    I want to be a contestant too!

  14. #29
    Just because ygfperson's Avatar
    Join Date
    Jan 2002
    Posts
    2,490
    you're added, BMJ.


    just a note: you can sign up at any time until the contest ends. even if you don't sign up, you can still submit something and have it be valid. i just prefer you sign up so i have an idea on how many people are participating.

  15. #30
    Redundantly Redundant RoD's Avatar
    Join Date
    Sep 2002
    Location
    Missouri
    Posts
    6,331
    I am backing out. I just don't have time between my game, class, and my girl, i'll catch the next contest.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. My own itoa()
    By maxorator in forum C++ Programming
    Replies: 18
    Last Post: 10-15-2006, 11:49 AM
  2. A bunch of Linker Errors...
    By Junior89 in forum Windows Programming
    Replies: 4
    Last Post: 01-06-2006, 02:59 PM
  3. Read word from text file (It is an essay)
    By forfor in forum C Programming
    Replies: 7
    Last Post: 05-08-2003, 11:45 AM
  4. mygets
    By Dave_Sinkula in forum C Programming
    Replies: 6
    Last Post: 03-23-2003, 07:23 PM
  5. Outputting String arrays in windows
    By Xterria in forum Game Programming
    Replies: 11
    Last Post: 11-13-2001, 07:35 PM