Guest User

Untitled

a guest
Jul 15th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. struct Node {
  2. int type;
  3. int otherInfo;
  4. Node * next;
  5. }
  6.  
  7. struct Node2 {
  8. int type;
  9. int frequency;
  10. //A linked list to keep track of the "otherInfo"
  11. Node2 * next;
  12. }
  13.  
  14. while(node.next != null)
  15. hashtable[type]++;
Add Comment
Please, Sign In to add comment