Advertisement
Broatlas

size

Apr 23rd, 2016
260
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.15 KB | None | 0 0
  1. int trie_size     ( trie_node_t *  root ) {
  2. int size =0,i;
  3. trie_node_t *tmp = root;
  4.  
  5.     if(!tmp->child[0]){
  6.         return size;
  7.     }
  8.  
  9.  
  10. return size;
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement