Monday, November 1, 2021

Linked list in C Data Structure

 #include<stdio.h>
struct tag {
    int x;
    struct tag *Next;
};
void showMe(struct tag *n) {
    while(n!=NULL) {
        printf("%d\n", n->x);
         n = n->Next;
    }
}
int main() {
    struct tag x, *t1, y , *t2, z, *t3;
    t1 = &x;
    t2 = &y;
    t3 = &z;
    
    t1->x = 1;
    t1->Next = &y;
    t2->x = 2;
    t2->Next = &z;
    t3->x = 3;
    t3->Next = NULL;
    
    showMe(&x);

    return 0;
}

No comments:

Post a Comment

Priority queue deleting elements after ascending inputs Gaand Fadd

 using namespace std; #include<iostream> #define N 5 class pq { public:     int* arr;     int front;     int rear;     pq() {         ...