Brute force tries every possible solution and picks the best. For items, this often means or time. It may also use to space to store candidates. Unusable for large inputs.
Greedy makes one choice per step without looking back. It gives or time, depending on whether sorting is needed. Space is usually extra beyond the input.
The tradeoff: brute force always finds the optimum, greedy only works when the greedy choice property holds. But when greedy works, it is dramatically faster.