Pointer to a valid NodeMaster class.
You MUST provide a comparison routine, which will be used to sort your list. The comp routine should accept three params: item1, item2 and info. Item1 and item2 are the two items you should compare; while info is an optional param containing to whatever you want. Your comp routine MUST return a value:
Item1 > Item2
Item1 = Item2
Item1 < Item2 Then items will be sorted accordingly by the sort method.
This is an optional param that will be passed to your comp routine. It can contain everything you like.