STAR is phase 1: sort(sum(candidates))[:2] (almost identical to score/approval/FPTP. We'd just take argmax instead of top two) and phase 2: eliminate other candidates, argmax(sum(candidates)) (identical to score/approval/FPTP).
On the other hand RCV is a multi-round system with a while loop. In practice it almost never has fewer than 2 rounds (requires overwhelming majority, which almost never happens with more than 3 candidates).
From an algorithms perspective RCV is more complex.