Insert a node at the head of a linked list

  • + 0 comments

    On the C# variant you have an error in line 83 that prevents code to be evaluated. PrintSinglyLinkedList(llist->head, "\n", textWriter); I think it should be: PrintSinglyLinkedList(llist_head, "\n", textWriter); Not all the time java code works in C# :D