Created
June 8, 2018 08:38
-
-
Save iamvon/7801548bb1727e47b6d0dd701e728104 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Node* addFirst(Node *head, int value) { | |
| Node *addElement = new Node; | |
| addElement->value = value; | |
| if(head == NULL) head = addElement; | |
| else { | |
| addElement->nextNode = head; | |
| head = addElement; | |
| } | |
| return head; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment