Greetings, I'm struggling with the task 5.17 particularly with the way it solves task challenge. I have solution from Tondo's 'The C Answer Book' and I'm trying to figure how to sort fields within lines with external arguments since it sorts only 1st field within any line no matter what I parse as an argument in switches + -, thx in advance

EDIT: My struggle is how it solves problem with sorting fields within lines. How can I see if it works ? Can you test it and send me clue ?! Thx

EDIT: E.g. I type: enter image description here

Numbers in the 2nd field of every line are not sorted?!

#include <stdio.h>
#include <ctype.h>
#include <stdlib.h>
#include <string.h>
#include <math.h>

#define LGT 400
#define BUF 400

#define NUM  1
#define REV  2
#define FOLD 4
#define DIR  8
#define LINES 100

static char option=0;
int pos1=0;
int pos2=0;
static char buffer[BUF];
static char *bp=buffer;

char *alloc(int lg)
{
     if(buffer+LGT-bp<=lg)
          return 0;
     else {
          bp+=lg;
          return bp-lg;
     }

}

int getl(char *s, int max)
{
     int c;
     char *t=s;
     while(--max>0 && (c=getchar())!=EOF && c!='\n')
          *s++=c;
     if(c=='\n')
          *s++=c;
     *s='\0';
     return s-t;
}

int readl(char *lptr[], int maxl)
{
     int lenum,nl=0;
     char *p,k=0;
     char arnum[LGT];
     while((lenum=getl(arnum,LGT))>0)
          if(lenum>=maxl || (p=alloc(lenum))==NULL)
               return -1;
          else {
               arnum[lenum-1]='\0';
               strcpy(p,arnum);
               lptr[nl++]=p;
          }
          return nl;

}

void qsort(void *v[],int left, int right, int (*cmp) (void *, void *))
{
     void swap(void *v[],int l, int r);
     int last,i;
     if(left>=right)
          return;

     swap(v,left,(left+right)/2);
     last=left;
     for(i=left+1;i<=right;i++)
          if((*cmp)(v[i],v[left])<0)
               swap(v,++last,i);
     swap(v,left,last);
     qsort(v,left,last-1,cmp);
     qsort(v,last+1,right,cmp);
}

void swap(void *v[],int l, int r)
{
     void *temp;
     temp=v[l];
     v[l]=v[r];
     v[r]=temp;

}

void readargs(int argc, char *argv[])
{
     int c;
     void error(char *s);

         while(--argc>0 && (c = (*++argv)[0])=='-'||c=='+'){
            if(c=='-' && !isdigit(*(argv[0]+1)))
              while(c=*++argv[0])
                switch(c){
                    case 'd':
                         option |= DIR;
                         break;
                    case 'n':
                         option |= NUM;
                         break;
                    case 'r':
                         option |= REV;
                         break;
                    case 'f':
                         option |= FOLD;
                         break;
                    default:
                         printf("Option %s not found\n",c);
                         argc=1;
                         break;
                }
            else if(c=='-')
                 pos2=atoi(argv[0]+1);
            else if((pos1=atoi(argv[0]+1))<0)
                 error("Usage: ");
         }
         if(argc||pos1>pos2)
              error("Usage: ");
}

int numcmp(char *a, char *b, int maxs)
{
     void substr(char *s, char *str);
     double x, y;
     char str[LGT];

     substr(a,str);
     x=atof(str);
     substr(b,str);
     y=atof(str);
     if(x<y)
          return -1;
     else if(x>y)
          return 1;
     else 
          return 0;
}

void writel(char *lptr[],int lgt, int opt)
{
     int i;
     if(opt)
          for(i=lgt-1;i>=0;i--)
               printf("%s\n",lptr[i]);
     else
          for(i=0;i<lgt;i++)
               printf("%s\n",lptr[i]);
}

void error(char *s)
{
     printf("%s\n",s);
}

void substr(char *s, char *str)
{
     int i, j, len;

     len=strlen(s);
     if(pos2>0 && len>pos2)
          len=pos2;
     else if(pos2>0 && len<pos2)
          error("substr: string too short");
     for(j=0, i=pos1;i<len;i++,j++)
          str[j]=s[i];
     str[j]='\0';
}

int charcmp(char *s, char *t)
{
     char x, y;
     int i, j, endpos;
     int dir=(option & DIR) ? 1:0;
     int fold=(option & FOLD) ? 1:0;

     i=j=pos1;

     if(pos2>0)
          endpos=pos2;
     else if((unsigned)(endpos=strlen(s)) > strlen(t))
          endpos=strlen(t);
     do {
          if(dir){
               while(i<endpos && !isalnum(s[i]) && s[i]!=' ' && s[i]!='\0')
                    i++;
               while(j<endpos && !isalnum(t[j]) && t[j]!=' ' && t[j]!='\0')
                    j++;
          }
        if(i<endpos && j<endpos){
             x=fold?tolower(s[i]):s[i];
                i++;
             y=fold?tolower(t[j]):t[j];
                j++;
             if(x==y && x=='\0')
                return 0;
        }
     }while(x==y && i<endpos && j<endpos);
      return x-y;
}

int main(int argc, char *argv[])
{
     int len,rc;
     char *lptrx[LGT];

         readargs(argc,argv);
               if((len=readl(lptrx,LGT))>0){
                    if(option & NUM)
                         qsort((void **)lptrx,0,len-1, 
                         (int (*)(void *, void *))numcmp);
                    else 
                         qsort((void **)lptrx,0,len-1, 
                         (int (*)(void *, void *))charcmp);
                    writel(lptrx,len,option & REV);     

               }
               else {
                    printf("Too long input\n");
                    rc=-1;
               }
}
link|improve this question

4  
@highlevelcoder: What is exactly your question? The code you've posted doesn't work? You don't understand a particular section? Could you clarify....? – Bart May 26 '11 at 19:32
Sample input and desired output would also be useful – Seth Robertson May 26 '11 at 19:51
@Seth Just test it yourself since I believe you're experienced programmer and send me a clue how can I sort fields within lines since with parameters + and - I'm not getting it, thx – highlevelcoder May 26 '11 at 19:53
Highlevelcoder -- I wonder if you don't know how to set the command-line parameters? It looks like you are running your program from an IDE of some sort. Do you know how to specify, for example "-d" or "+1" when you run the program? – Robᵩ May 26 '11 at 20:11
VS2010 and I set them without success as I posted above – highlevelcoder May 26 '11 at 20:14
show 7 more comments
feedback

closed as not a real question by Jeremy W. Sherman, tibur, Bo Persson, Frank Farmer, Graviton May 27 '11 at 2:58

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ for guidance on how to improve it.

1 Answer

Increase the warning level of your compiler and mind the warnings

Pay attention to parenthesis!

Read the "compilation info" and "author's notes" near the end of the pages below

Also, whitespace is cheap nowadays.

link|improve this answer
¸Bro, thank you for your time but the output is not sorted, its mixed again. Fields should be sorted independently of each other – highlevelcoder May 27 '11 at 7:00
At least that makes sense, read the task itself at: clc-wiki.net/wiki/K%26R2_solutions:Chapter_5 – highlevelcoder May 27 '11 at 7:24
Considering the 2nd field as string, the output is sorted: 1111 < 2133 < 2333 < 9 – pmg May 27 '11 at 8:16
I'm sorry maybe I haven't understood, but logically at first sight it'd make sense that they require you to sort it as 9 < 1111 < 2133 < 2333 as int, each data type independently. I'm really a beginner and I consider now to read something more appropriate such as Prata's C Primer Plus and then return to K&R from start, I made mistake by stretching the reading for months so obviously, C vaporized mostly from my memory – highlevelcoder May 27 '11 at 8:58
The statements inside the while condition are wrong. See ideone.com/KBCxg for which I also added the "-n" option. Don't try to cram lots of stuff in every statement. The less each statement does the better it can be understood (and changed). – pmg May 27 '11 at 9:26
show 4 more comments
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.