Search:

Type: Posts; User: bitanbasak

Search: Search took 0.01 seconds.

  1. Checking If A Linked List Is Palindrome Or Not

    I am trying the check if a link is palindrome or not using the following method:

    1) Create and read the original linked list from user.
    2) Traverse through the original linked list and using the...
  2. Reversing The Linked List by reversing the links only

    I have prepared a code to perform the above task:


    #include <stdio.h>
    #include <stdlib.h>


    struct node {
    int data;
    struct node *ptr;
  3. Adding Two 2D-Sparse Matrix using Data Structures in C

    Hey guys, I am new to data structures using C. I have been told to add two 2D arrays. I have taken the Row, Column and Value input of the non zero values from the user for the two sparse matrix and...
Results 1 to 3 of 3