Guest User

Untitled

a guest
Nov 23rd, 2017
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. TreeLink create(char *key,int number) {
  2. TreeLink result = (TreeLink) malloc(sizeof(TreeNode));
  3. result->key = malloc(sizeof(char)*100);
  4. strcpy(result->wordArray, key);
  5. result->rowlist = listinsert(number, result->rowlist);
  6. result->key = key;
  7. result->left = NULL;
  8. result->right = NULL;
  9. return result;
  10. }
Add Comment
Please, Sign In to add comment