Advertisement
Guest User

Untitled

a guest
Oct 18th, 2017
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.45 KB | None | 0 0
  1. struct comparator
  2. {
  3.     unsigned long int first;
  4.     unsigned long int second;
  5.     comparator *next;
  6. };
  7.  
  8. class b_sort
  9. {
  10. public:
  11.     int count;
  12.     comparator *firstComp;
  13.     comparator *currentComp;
  14.  
  15.     b_sort(void);
  16.     ~b_sort(void);
  17.     unsigned int join(unsigned int i0, unsigned int i1, unsigned int shift, unsigned int n0, unsigned int n1);
  18.     unsigned int sort(unsigned int i0, unsigned int step, unsigned int n0);
  19.     void push(unsigned int i0, unsigned int i1);
  20. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement