If the list is small (where "small" is less than a few thousand elements) and you don't do it much (where "much" is less than a few thousand times) it doesn't matter. Profile your code first to find the real bottleneck before you worry about optimizing your max/min algorithms.
Now to answer the question you asked.
Because there is no way to avoid looking at every element of the list, a linear search is the most efficient algorithm. It takes N time, where N is the number of elements in the list. Doing it all in one loop is more efficient than calling max() then min() (which takes 2*N time). So your code is basically correct, though it fails to account for negative numbers. Here it is in Perl.
# Initialize max & min
my $max = $list[0];
my $min = $list[0];
for my $num (@list) {
$max = $num if $num > $max;
$min = $num if $num < $min;
}
Sorting and then grabbing the first and last element is the least efficient. It takes N * log(N) where N is the number of elements in the list.
The most efficient min/max algorithm is one where min/max is recalculated every time an element is added or taken away from the list. In effect, caching the result and avoiding a linear search each time. The time spent on this is then the number of times the list is changed. It takes, at most, M time, where M is the number of changes no matter how many times you call it.
To do that, you might consider a search tree which keeps its elements in order. Getting the min/max in that structure is O(1) or O(log[n]) depending what tree style you use.
