Sorting by occurence in descending order, followed by a duplicate filter with a key attribute of LinkID will give you only max values out of the unique port.
Use a StatisticsCalculator to get the max value per LinkID
Settings you need to set are:
group by = LinkID,
Attributes to analyze = occurrence
Calculate Attributes = only use '_max'.
If you know that the LinkID is ordered you can 'Input Ordered' to Yes for improved performance. If you'Re unsure then just leave is as no to be safe
The 'Complete' output port will then have added the _max value for each group of LinkID.
You can then use a Tester to see if 'occurrence = _max' .
This method is good if you want also get any cases where the max occurrence value can be equal.
Another options:
Sorter (sorting by occurrence (numeric, descending).
Sampler (group by LinkID, first 1 feature).
This will get you the required result and might be the faster way if you have a large dataset..