2
Q:

how to find decimal value of a binary number in linked list


/* Returns decimal value of binary linked list */
int decimalValue(struct Node *head) 
{ 
    // Initialized result 
    int  res = 0; 
  
    // Traverse linked list 
    while (head != NULL) 
    { 
        // Multiply result by 2 and add 
        // head's data 
        res = (res  << 1) + head->data; 
  
        // Move next 
        head = head->next; 
    } 
    return res; 
} 
 
0

New to Communities?

Join the community