Search:

Type: Posts; User: avinashdongre

Search: Search took 0.01 seconds.

  1. Replies
    3
    Views
    5,763

    Look at the code I have wrote, though it is in C,...

    Look at the code I have wrote, though it is in C, can give you clue what is wrong.

    SourceForge.net Repository - [clibutils] Contents of /src/c_rb.c
  2. Replies
    2
    Views
    1,879

    static void pvt_left_rotate(struct clib_rb_t...

    static void
    pvt_left_rotate(struct clib_rb_t *pTree, struct clib_rb_node_t *x){
    struct clib_rb_node_t *y;
    y = x->right;
    x->right = y->left;
    if (y->left != rb_sentinel)
    ...
  3. Replies
    2
    Views
    2,160

    SourceForge.net Repository - [clibutils] Contents...

    SourceForge.net Repository - [clibutils] Contents of /src/c_rb.c
Results 1 to 3 of 4