failing like never before

9Feb/090

A Simple Weird Sorter

This is a little toy program written for one of my CS classes. The program takes a positive integer N as an argument and reads from stdin until it gets an EOF. The program then sorts the input using qsort, while assuming that each element to be supported is N bytes long.

Fun facts: the output from this program looks kinda cool if you do "./program_name 1 < index.html" where index.html is some large webpage.

  1. #include <stdio.h>  
  2. #include <stdlib.h>  
  3. #include <errno.h>  
  4.   
  5. #define MEM_SIZE 100  
  6.   
  7. // for the sake of ease, token length and input array are global  
  8. unsigned long global_token;  
  9. char * in_ptr;  
  10.   
  11. // comparator for qsort,  
  12. // returns 1 if a is bigger, -1 is smaller, 0 if equal  
  13. int comparator(const void  * a, const void * b)  
  14. {  
  15.   unsigned int i;  
  16.   int r_value = 0;  
  17.   for(i = 0; i < global_token; ++i)  
  18.   {  
  19.     if( *(i + (char*)a) < *(i + (char*)b))  
  20.       return -1;  
  21.     else if ( *(i + (char*)a) > *(i + (char*)b))  
  22.       return 1;  
  23.   }  
  24.   return 0;  
  25. }  
  26.   
  27. // get input from stdin and save it to dynmaically allocated memory  
  28. unsigned long get_input()  
  29. {  
  30.   char* temp_in_ptr;  
  31.   unsigned long ar_size, n_ar_size;  
  32.   unsigned long max_size = MEM_SIZE;  
  33.   for(ar_size = 0; !feof(stdin); ++ar_size) // loop until EOF  
  34.   {  
  35.     if(max_size == (1 + ar_size)) // check if more memory is needed  
  36.     {  
  37.       temp_in_ptr =(char *)realloc(in_ptr,  
  38.                   (size_t)(MEM_SIZE + max_size));  
  39.       if(!temp_in_ptr) // returns error and exits if realloc fails  
  40.       {  
  41.         fprintf(stderr, "Error in allocating memory for input.");  
  42.         fprintf(stderr, "Input data may be too large.\n");  
  43.         free(in_ptr); // free dynamically allocated memory  
  44.         exit(1);  
  45.       }  
  46.       in_ptr = temp_in_ptr;  
  47.       max_size += MEM_SIZE;  
  48.     }  
  49.     *(in_ptr + ar_size) = fgetc(stdin); // get next char from input  
  50.     if(ferror(stdin)) // check for read error  
  51.     {  
  52.       fprintf(stderr, "Error encountered in reading input.\n");  
  53.       free(in_ptr); // free dynamically allocated memory  
  54.       exit(1);  
  55.     }  
  56.   }  
  57.   ar_size --; // get rid of EOF char  
  58.   // if string was not multiple of token length, need to make it  
  59.   // a multiple of token length and fill end with '\0'  
  60.   if(ar_size % global_token != 0)  
  61.   {  
  62.     n_ar_size =  
  63.        (global_token * (unsigned int)(ar_size / global_token + 1));  
  64.     if(n_ar_size > max_size) // check if more memory is needed  
  65.     {  
  66.       temp_in_ptr = (char *)realloc(in_ptr, (size_t)n_ar_size);  
  67.       if(!temp_in_ptr) // check for error in mem allocation  
  68.       {  
  69.           fprintf(stderr, "Error in allocating memory for input.");  
  70.           fprintf(stderr, "Input data may be too large.\n");  
  71.           free(in_ptr); // free dynamically allocated memory  
  72.           exit(1);  
  73.       }  
  74.       in_ptr = temp_in_ptr;  
  75.     }  
  76.     for(; ar_size != n_ar_size; ++ar_size) // fill with '\0'  
  77.     {  
  78.       *(ar_size + in_ptr) = '\0';  
  79.     }  
  80.   }  
  81.   return ar_size;  
  82. }    
  83.   
  84. int main(int argc, char** argv)  
  85. {  
  86.   unsigned long ar_size, i;  
  87.   in_ptr = (char *)malloc(MEM_SIZE * sizeof(char));  
  88.   
  89.   if (argc < 2)  
  90.   {  
  91.     fprintf(stderr, "Must provide at least one argument.\n");  
  92.     free(in_ptr); // free dynamically allocated memory  
  93.     exit(1);  
  94.   }  
  95.   // use strtoul() to convert char to long int  
  96.   // and use errno to check for error in conversion  
  97.   errno = 0;  
  98.   global_token = strtoul(*(argv + 1), NULL, 0);  
  99.   if(!global_token || errno == ERANGE)  
  100.   {  
  101.     fprintf(stderr, "Argument must be a positive integer.\n");  
  102.     free(in_ptr); // free dynamically allocated memory  
  103.     exit(1);  
  104.   }      
  105.   
  106.   ar_size = get_input(); // get data from stdin  
  107.   // sort with qsort  
  108.   qsort(in_ptr, (size_t)(ar_size / global_token),  
  109.       (size_t)(sizeof(char) * global_token) , comparator);  
  110.   
  111.   for(i = 0; i < ar_size; ++i) //print sorted data  
  112.   {  
  113.     printf("%c", *(in_ptr + i));  
  114.   }  
  115.   free(in_ptr); // free dynamically allocated memory  
  116.   return 0;  
  117. }  
Tagged as: , , , No Comments
4Nov/080

Making Good Time

I thought I was pretty cool, riding my bike to and forth from class. Instead of the normal fifteen to twenty minutes that it would take me to walk from my room to class, I can now bike to class in about five minutes, even less if I don't have to slow down when people cross the street. It takes a little bit longer to get to my room since its all up hill going back, but I can still make good time. The only down side is that I get pretty sweaty, especially coming back to my room. (I don't have a road bike, or even a lightweight hybrid: I've got an old chromoly Trek 820 mountain bike with 1.95 inch tires, so its a lot harder for me to reach the same speeds as a racing bike.)

The fact of the matter is, I always thought I was pretty cool, racing cars (and sometimes beating them!) to class. But I saw the most amazing thing as I was picking up my bike to head back to my room last week: a segway locked up at the bike rack. So I took a picture, for my blog.

I actually saw the guy, riding his scooter up the hill a few days ago. I was sweating up the hill and he was crusing along, cool as a cucumber, talking on his cell phone the whole time.

Tagged as: , , No Comments