Search:

Type: Posts; User: pcshano

Search: Search took 0.00 seconds.

  1. Replies
    7
    Views
    2,496

    i figured out what my problem is but i can't...

    i figured out what my problem is but i can't figure out the way to fix it
    the problem is in my code, instead of sorting in descending from row with the most elements to the row with the least...
  2. Replies
    7
    Views
    2,496

    you initialize them from another function which i...

    you initialize them from another function which i called it buildTable

    int** buildTable (int* nrows){
    int rowNum;
    int colNum;
    int** table;
    int row;


    printf("Enter the...
  3. Replies
    7
    Views
    2,496

    i just put those numbers up there as example...

    i just put those numbers up there as example
    what i need to sort are the rows
    let's say i have a 2D array with 3 rows and each row with different number of elements
    row 1: 8 elements
    row 2: 3...
  4. Replies
    7
    Views
    2,496

    [Help][Urgent]Selection sort a 2D array

    I need help with selection sorting a 2D array
    let's say i have an array like

    1 2 3 4 //4 elements
    1 2 // 2 elements
    1 2 3 4 5 //5 elements
    1 2 3 //3 elements
    1 //1 element

    and...
Results 1 to 4 of 4