I remember first running into this mismatch of approaches writing my first SQL Server triggers. (Let's pretend for the moment that this is not a holy war topic.) I intuitively wanted to do a particular thing with each row that was inserted into a table. I wanted to deal with the inserted column values as scalar values.
update inserted_row set full_name = @first_name + ' ' + @last_name
My problem was that since an INSERT can affect multiple rows, and a trigger fires once per INSERT, an INSERT trigger has to handle all the inserted rows at once. So of course the mechanism provided is the INSERTED virtual table rather than a group of variables like I wanted.
update people set full_name = people.first_name + ' ' + people.last_name from inserted join people on inserted.id = people.id
I had to learn to think in terms of sets instead of items. In my group of very young and inexperienced developers, there were several that really struggled with making this leap. This was in the good ole days before SQL Server supported cursors. (Sorry, I'm really not to trying to incite a riot here.) So for quite a few years there, I thought of executing operations on multiple data elements as being done in a set-based manner in SQL,
select sum(salary) from employees
and iteratively in the other languages I used, such as VB, JavaScript, C#, etc.
var total = 0.0; foreach (var employee in employees) total += employee.Salary;
Then along came lambda expressions. This is of course faulty chronology, since lambda expressions were introduced well before I was born. But it was years later that dear Ruby introduced me to the beauty of lambdas. They afford us the ability to specify what needs to be done with each element without bothering ourselves with the particulars of crawling through lists.
employees.map{|employee| employee.salary}.inject(:+)
And of course they found their way into .NET as well.
employees.Sum(employee => employee.Salary)
This syntax is more concise, more declarative, more about intention than implementation. This is all good, but is it anything more than syntactic sugar? I'm a syntactic sweet-tooth myself, but there is more value here than that. We have separated the concern of getting the data we want, from that of dealing with a particular looping construct or iteration implementation. The same lambda can be used regardless of whether we want to iterate through the list serially, spawn threads to execute in parallel, wrap the operations in a transaction, or whatever.
I have recently been programming some matrix math, which has got me thinking about set-based or matrix-based operations as opposed to the more conventional iterative approach. Your geek core might be harder than mine, but I had not used matrices and vectors since high school. In case you don't want to go do any additional reading on matrices, here are a few insultingly simple examples that should be fairly intuitive to read:
1. Multiply a matrix and a scalar:
| 3 1 5 | | 6 2 10 | | 0 2 2 | * 2 = | 0 4 4 | | 6 3 4 | | 12 6 8 |
2. Multiply a column vector and a row vector:
| 2 | | 2 4 6 | | 0 | * | 1 2 3 | = | 0 0 0 | | 4 | | 4 8 12 |
3. Multiply a row vector and a column vector (note matrix multiplication is not commutative):
| 2 | | 1 2 3 | * | 0 | = | 14 | | 4 |
I was pleasantly surprised to find matrix support libraries for pretty much every language I thought to check for them. Just for fun, let's look at two ways to solve each of these simple examples, each with a different language.
Example 1 in Ruby
Iterative approach:
matrix = [[3, 1, 5], [0, 2, 2], [6, 3, 4]] for i in 0..2 for j in 0..2 matrix[i][j] *= 2 end end # matrix => [[6, 2, 10], [0, 4, 4], [12, 6, 8]]Matrix approach using the core Matrix library:
require 'matrix' matrix = Matrix.rows([[3, 1, 5], [0, 2, 2], [6, 3, 4]]) p matrix * 2 #=> Matrix[[6, 2, 10], [0, 4, 4], [12, 6, 8]]
Example 2 in C#
Iterative approach:
int[] column = {2, 0, 4}; int[] row = {1, 2, 3}; var product = new int [3, 3]; for (var i = 0; i < 3; i++) for (var j = 0; j < 3; j++) product[i, j] = column[i] * row[j]; // product => {{2, 4, 6}, {0, 0, 0}, {4, 8, 12}}Matrix approach using the Math.NET Numerics library:
var column = new DenseMatrix(3, 1); column.SetColumn(0, new double[] {2, 0, 4}); var row = new DenseMatrix(1, 3); row.SetRow(0, new double[] {1, 2, 3}); var product = column * row; // => 2,4,6 // 0,0,0 // 4,8,12
Example 3 in Python
Iterative approach:
row = [1, 2, 3] column = [2, 0, 4] product = 0 for i in range(3): product += column[i] * row[i] # product => 14Matrix approach using the NumPy library:
from numpy import * row = matrix('1 2 3') column = matrix('2; 0; 4') product = row * column #=> [[14]]
You can see how this approach eliminates a layer or two of loops from your code as well as the accumulation code of adding up sums or whatever. There may not be a huge benefit in these simple cases, but when addressing problems of more realistic complexity this can work wonders for both readability and performance. I have used these matrix constructs mostly in the context of algebraic summations over matrix elements, which are used heavily in various machine learning algorithms such as linear regression and neural networks.
The next time you start to write some looping code, take a second to think about whether there might be another way to go. Chances are that you can accomplish the same thing with less code that will read better and often run faster.
No comments:
Post a Comment