Search:

Type: Posts; User: asem0525

Search: Search took 0.00 seconds.

  1. Replies
    8
    Views
    2,837

    when adding to the front, shoudn't I move all the...

    when adding to the front, shoudn't I move all the queue by adding one index in the front?
    and for remiving from the rear I use: *rear = (*rear--)
  2. Replies
    8
    Views
    2,837

    void AddFront(int item, int q[], int MAX, int...

    void AddFront(int item, int q[], int MAX, int *front, int *rear)
  3. Replies
    8
    Views
    2,837

    I've got a double-ended queue and I need to add a...

    I've got a double-ended queue and I need to add a new item to the front of the queue and delete an item from the end, using C

    thank you
  4. Replies
    8
    Views
    2,837

    I'm using an array

    I'm using an array
  5. Replies
    8
    Views
    2,837

    adding an item to the front of the queue

    Hi, can somebody tell me how to add an item to the front of the queue?
    thank you
  6. Replies
    7
    Views
    1,408

    rahmet

    rahmet
  7. Replies
    7
    Views
    1,408

    Rahmet

    Rahmet
  8. Replies
    7
    Views
    1,408

    tutorial quizz question for switch operator

    4. What is the result of the following code?

    x=0;
    switch(x)
    {
    case 1: printf( "One" );
    case 0: printf( "Zero" );
    case 2: printf( "Hello World" );
    }
Results 1 to 8 of 8