vote up 2 vote down star
2

Why might the C# language designers not have included support for something like this (ported from Structure and Interpretation of Computer Programs, second ed., p. 30):

/// <summary>Return the square root of x.</summary>
double sqrt(double x) {
  bool goodEnough(double guess) {
    return Math.Abs(square(guess) - x) < 0.001;
  }
  double improve(double guess) {
    return average(guess, x / guess);
  }
  double sqrtIter(double guess) {
    return goodEnough(guess) ? guess : sqrtIter(improve(guess));
  }
  sqrtIter(1.0);
}
flag

3 Answers

vote up 18 vote down check

In fact, C# has exactly this.

double sqrt(double x) {
    var goodEnough = new Func<double, bool>(guess =>
        Math.Abs(square(guess) - x) < 0.001
    );
    var improve = new Func<double, double>(guess =>
        average(guess, x / guess)
    );
    var sqrtIter = default(Func<double, double>);
    sqrtIter = new Func<double, double>(guess =>
        goodEnough(guess) ? guess : sqrtIter(improve(guess))
    );
    return sqrtIter(1.0);
}
link|flag
+1. Except for the properly tail-recursive part. :) – Greg Hewgill Feb 23 at 2:50
Yep, C# won't optimize tail-recursion into a loop. That feature is missing from the language. – Justice Feb 23 at 2:53
Thanks for pointing this out! I'll have to push for a switch to .NET 3.5 (we're inexplicably still using 2.0). – Steve Betten Feb 23 at 2:54
While you're at it, you should push for a switch to Haskell. But .net-3.5 is good too! – Justice Feb 23 at 3:04
hmm why do you have that default thingy there and not initialize directly? – Johannes Schaub - litb Feb 23 at 3:44
show 7 more comments
vote up 6 vote down

Like Justice said, you can do it with C# 3.5 and lambdas; if you have C# 2.0, you can use anonymous functions, although it would be somewhat less sexy:

double sqrt(double x) {
	Func<double, bool> goodEnough = delegate(double guess) {
		return Math.Abs(square(guess) - x) < 0.001;
	};
	Func<double, double> improve = delegate(double guess) {
		return average(guess, x / guess);
	};
	Func<double, double> sqrtIter = null;
	sqrtIter = delegate(double guess) {
		return goodEnough(guess) ? guess : sqrtIter(improve(guess));
	};
	return sqrtIter(1.0);
}

Edit: I forgot, Func isn't defined in C# 2.0, so you have to define it yourself:

 public delegate TResult Func<T, TResult>(T guess);
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.