I need to calculate the h-index from a list of publications i stored in a tree.

What i did is traversing the tree in decrescent order obtaining a list of position-number of citations

it looks like:

line 1 10
line 2 5
line 3 4
line 4 0

I should stop at line 3 and return 3. The problem is with the examples given and in this case

line 1 4
line 2 0
line 3 0

it stops at 2 because 4>1 but 0>3 is false. It should return 1 instead. Can you explain me why? I know it's more like a mathematician question, but after that i could need to re-implement it if something is deeply wrong.

Here is the code

  int index_h_calc(rbtree_node n, int *i){
    if (n == NULL) {
        fputs("<empty tree>\n", stdout);
        return 0;
    }
    if (n->right != NULL)
      index_h_calc(n->right,i);


    graduat *grad;
    grad=n->value;

    if(DEBUG)
      printf("linea %d %d %s\n ",*i,(int)grad->tot,grad->name);

    if(*i+1>=(int)grad->tot) {
      return *i;
    } else
      *i+=1;

    if (n->left != NULL)
      index_h_calc(n->left,i);

    return *i;
  }
link|improve this question

67% accept rate
Please show us what you have done. Btw: your first example should return 3. – Howard Jun 11 '11 at 9:17
ops sorry. ok i paste it. – Chobeat Jun 11 '11 at 9:21
1  
looks like homework to me – Ulterior Jul 11 '11 at 12:50
feedback

1 Answer

Perhaps I am missing some subtlety, but isn't the answer just to subtract one from the line number? That is, if i is the line number and n is the number of citations, you traverse the tree until you find a line with n < i and then return the h-index as i - 1.

link|improve this answer
...shouldn't that be, "then return the h-index as n - 1"? Otherwise it sounds right to me... – Dmitri Dec 28 '11 at 21:15
@Dmitri: no, it has to be i - 1. Consider the first example of the OT: we stop at line 4 (because 0 < 4) and return an h-index of 4 - 1 = 3. In the second example, we stop at line 2 and return 1. – deprecated Dec 30 '11 at 23:19
Oops.. When I wrote that i had n and i backward in my mind for some reason. – Dmitri Dec 30 '11 at 23:36
feedback

Your Answer

 
or
required, but never shown

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