Advertisement
Guest User

Untitled

a guest
Nov 21st, 2014
170
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. class HashT
  2. {
  3. public:
  4.  
  5. void CopyHT(struct Node** ht1, struct Node** ht2, unsigned int sz);
  6.  
  7. other functions...
  8. }
  9.  
  10. void HashT::CopyHT(struct Node** ht1, struct Node** ht2, unsigned int sz)
  11. {
  12. for (unsigned int i = 0; i <sz; i++)
  13. {
  14. copy...
  15. }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement