Search Results

0
votes

Why are relational set-based queries better than cursors?

The idea behind preferring to do the work in queries is that the database engine can optimize by reformulating it. That's also why you'd want to run EXPLAIN on your query, to see what the db is …
3
votes

‘goto’ usage

One of the reasons goto is bad, besides coding style is that you can use it to create overlapping, but non-nested loops: loop1: a loop2: b if(cond1) goto loo …
3
votes

Is regex case insensitivity slower?

@Brian Warshaw: [A-z] includes a few more things: >>> ''.join([ chr(c) for c in range(ord('A'), ord('z')+1)]) 'ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuv …
1
vote

Why is quicksort better than mergesort?

All things being equal, I'd expect most people to use whatever is most conveniently available, and that tends to be qsort(3). Other than that quicksort is known to be very fast on arrays, just like …