User mquander - Stack Overflowmost recent 30 from stackoverflow.com2009-12-21T17:08:32Zhttp://stackoverflow.com/feeds/user/55943http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1938409/linq-how-to-convert-the-nested-hierarchical-object-to-flatten-object/1938472#19384721Answer by mquander for LINQ: How to convert the nested hierarchical object to flatten objectmquander2009-12-21T06:10:56Z2009-12-21T06:16:01Z<p>If you want it to flatten an arbitrarily deep tree of people, I suggest the following:</p>
<pre><code>public IEnumerable<Person> GetFamily(Person parent)
{
yield return parent;
foreach (Person child in parent.Children) // check null if you must
foreach (Person relative in GetFamily(child))
yield return relative;
}
</code></pre>
<p>There isn't really any good way to shorten this with LINQ, because anonymous lambdas can't call themselves recursively without implementing Y. You could "reduce" the above method to</p>
<pre><code>return parent.Children.SelectMany(p => GetFamily(p))
.Concat(new Person[] { parent });
</code></pre>
<p>or alternatively</p>
<pre><code>yield return parent;
foreach (Person relative in parent.Children.SelectMany(GetFamily))
yield return relative;
</code></pre>
<p>but that seems sort of unnecessary to me.</p>
http://stackoverflow.com/questions/1930196/whats-the-easiest-way-to-generate-a-listint-of-ordered-numbers-in-c/1930206#193020617Answer by mquander for What's the easiest way to generate a List<int> of ordered numbers in C#?mquander2009-12-18T19:23:37Z2009-12-18T19:23:37Z<p>Yes, you can do it easily like this:</p>
<pre><code>List<int> steporders = Enumerable.Range(1, 10).ToList();
</code></pre>
http://stackoverflow.com/questions/1930133/c-closures-why-is-the-loopvariable-captured-by-reference/1930149#19301499Answer by mquander for C# Closures, why is the loopvariable captured by reference?mquander2009-12-18T19:13:35Z2009-12-18T19:13:35Z<p>Well, that's just how C# works. The lambda expression in your statement constructs a lexical closure, which stores a single reference to <code>i</code> that persists even after the loop has concluded.</p>
<p>To remedy it, you can do just the thing that you did.</p>
<p>Feel free to read more on this particular issue all around the Web; my choice would be <a href="http://blogs.msdn.com/ericlippert/archive/2009/11/12/closing-over-the-loop-variable-considered-harmful.aspx" rel="nofollow">Eric Lippert's discussion here.</a></p>
http://stackoverflow.com/questions/1926099/a-function-in-scheme-to-replace-all-occurences-of-an-element-in-a-list-with-anoth/1926127#19261272Answer by mquander for A function in scheme to replace all occurences of an element in a list with another elementmquander2009-12-18T03:37:11Z2009-12-18T04:16:48Z<p>A simple version might be designed like this:</p>
<pre><code>(define (replace old-element new-element list)
; if the list is null, just return null
; else if the car of the list is equal to old-element
; run replace on the rest of the list, and cons new-element onto it
; else
; run replace on the rest of the list, and cons the car onto it)
</code></pre>
<p>(I left the details up to you, since you gotta learn by doing.)</p>
<p>Remember, in Scheme the most natural way to do things will usually be to assemble a new list piece-by-piece from your old list, not to try to make little changes one at a time to your old list.</p>
<p>Note that you could also use <code>map</code> to do this much more concisely.</p>
http://stackoverflow.com/questions/1916260/more-fluent-c-net/1916305#191630543Answer by mquander for More fluent C# / .NETmquander2009-12-16T17:34:37Z2009-12-16T17:34:37Z<p>I see no advantage to this besides being confusing to the reader. With respect to my fellow answerer, I would like to know on what planet this is more readable. As far as I can tell, the first version has more or less perfect readability, whereas this is fairly readable, but makes the reader wonder whether there's some strange magic happening within <code>With</code> and <code>WithIf</code>.</p>
<p>Compared to the first version, it's longer, harder to type, less obvious, and less performant.</p>
http://stackoverflow.com/questions/1908710/function-in-scheme-that-checks-whether-the-length-of-a-list-is-even/1908770#19087701Answer by mquander for Function in Scheme that checks whether the length of a list is even mquander2009-12-15T16:48:06Z2009-12-15T16:54:22Z<p>You seem to have the syntax for <code>if</code> and <code>cond</code> all mixed up. I suggest referring to the <a href="http://docs.plt-scheme.org/reference/if.html" rel="nofollow">language reference</a>. <code>if</code> only has two clauses, and you don't write <code>else</code> for the else clause. (Hint: You shouldn't need an <code>if</code> for this function at all.)</p>
<p>Also, consider whether it makes sense to return <code>null</code> if the list is <code>null</code>; probably you want to return <code>#t</code> or <code>#f</code> instead.</p>
<p>Oh yeah, and rewrite your call of <code>length</code> to be a proper prefix-style Scheme function call.</p>
http://stackoverflow.com/questions/1905457/how-do-i-get-all-the-columns-of-a-table-besides-one/1905460#19054608Answer by mquander for How do I get all the columns of a table besides onemquander2009-12-15T06:07:04Z2009-12-15T06:07:04Z<p>Nope, sorry. You can take <code>*</code>, or you can take them one at a time, but you can't take "all of them except for X, Y, or Z."</p>
http://stackoverflow.com/questions/1878236/functions-that-produce-lists-of-lists-in-scheme/1878262#18782620Answer by mquander for functions that produce lists of lists in schememquander2009-12-10T02:19:05Z2009-12-10T02:25:23Z<p>I don't quite follow what you're trying to do, but in addition to <code>map</code>, you might find <code>build-list</code> to be useful. <code>build-list</code> takes a number and a procedure, takes the range from 0 to that number less 1, and maps your procedure over that range. e.g.</p>
<pre><code>> (build-list 5 (lambda (x) (* x x)))
(0 1 4 9 16)
</code></pre>
http://stackoverflow.com/questions/1869116/scheme-built-in-to-check-list-containment/1869303#18693033Answer by mquander for Scheme built-in to check list containmentmquander2009-12-08T19:33:10Z2009-12-08T19:33:10Z<p>In PLT Scheme, one has</p>
<pre><code>(member whatever list)
(memv whatever list)
(memq whatever list)
</code></pre>
<p>from the SRFI which use, respectively, <code>equal?</code>, <code>eqv?</code>, and <code>eq?</code> to test for equality. There are also a number of other library functions related to searching in lists:</p>
<p><a href="http://docs.plt-scheme.org/reference/pairs.html" rel="nofollow">PLT Scheme list reference</a></p>
http://stackoverflow.com/questions/1864543/understanding-streams-and-their-lifetime-flush-dispose-close/1864586#18645861Answer by mquander for Understanding Streams and their lifetime (Flush, Dispose, Close)mquander2009-12-08T04:27:34Z2009-12-08T04:27:34Z<p>Disposing a stream closes it (and probably doesn't do much else.) Closing a stream flushes it, and releases any resources related to the stream, like a file handle. Flushing a stream takes any buffered data which hasn't been written yet, and writes it out right away; some streams use buffering internally to avoid making a ton of small updates to relatively expensive resources like a disk file or a network pipe.</p>
<p>You need to call either <code>Close</code> or <code>Dispose</code> on most streams, or your code is incorrect, because the underlying resource won't be freed for someone else to use until the garbage collector comes (who knows how long that'll take.) <code>Dispose</code> is preferred as a matter of course; it's expected that you'll dispose all disposable things in C#. You probably don't have to call <code>Flush</code> explicitly in most scenarios.</p>
<p>In C#, it's idiomatic to call <code>Dispose</code> by way of a <code>using</code> block, which is syntactic sugar for a try-finally block that disposes in the finally, e.g.:</p>
<pre><code>using (FileStream stream = new FileStream(path))
{
// ...
}
</code></pre>
<p>is functionally identical to</p>
<pre><code>FileStream stream;
try
{
stream = new FileStream(path);
// ...
}
finally
{
stream.Dispose();
}
</code></pre>
http://stackoverflow.com/questions/1850132/ruby-got-typeerror-when-calling-function-whats-happening/1850143#18501433Answer by mquander for Ruby: got TypeError when calling function. What's happening?mquander2009-12-04T22:43:56Z2009-12-04T22:43:56Z<p>I don't know any Ruby, but I suspect that <code>numbers</code> is an array of numbers, not just one, and when you pass it to <code>factorial</code> it tries to perform the computation and blows up. (It doesn't make sense to compare an array to zero, multiply it, or subtract it.)</p>
<p>You'll need to either change <code>factorial</code> to accept multiple numbers and find the factorial of each, or (easier) change the calling code to compute one factorial at a time over the set of numbers.</p>
http://stackoverflow.com/questions/1847580/how-do-i-loop-through-a-date-range/1847601#184760121Answer by mquander for How do I loop through a date range?mquander2009-12-04T15:16:02Z2009-12-04T15:16:02Z<p>Well, you'll need to loop over them one way or the other. I prefer defining a method like this:</p>
<pre><code>public IEnumerable<DateTime> EachDay(DateTime from, DateTime thru)
{
for(var day = from.Date; day.Date <= thru.Date; day = day.AddDays(1))
yield return day;
}
</code></pre>
<p>Then you can use it like this:</p>
<pre><code>foreach (DateTime day in EachDay(StartDate, EndDate))
// print it or whatever
</code></pre>
<p>In this manner you could hit every other day, every third day, only weekdays, etc. For example, to return every third day starting with the "start" date, you could just call <code>AddDays(3)</code> in the loop instead of <code>AddDays(1)</code>.</p>
http://stackoverflow.com/questions/1841053/a-simple-lisp-function/1841116#18411163Answer by mquander for a simple lisp functionmquander2009-12-03T16:29:28Z2009-12-03T16:29:28Z<p>Normally, <code>mapc</code> would apply your lambda to each element of a list. My guess (I don't use Common Lisp) is that since <code>mapc</code> has no elements in the list to operate on, your lambda never gets called at all, and as a result the return value of your function is the return value of <code>mapc</code>, which (since it mapped over nothing) is <code>nil</code>.</p>
http://stackoverflow.com/questions/1838422/why-set-based-approaches-are-better-than-the-procedural-approaches/1838441#18384414Answer by mquander for Why “Set based approaches” are better than the “Procedural approaches”?mquander2009-12-03T08:21:29Z2009-12-03T08:21:29Z<p>Because SQL is a really poor language for writing procedural code, and because the SQL engine, storage, and optimizer are designed to make it efficient to assemble and join sets of records.</p>
http://stackoverflow.com/questions/1837438/can-you-have-hash-tables-in-lisp/1837500#18375002Answer by mquander for Can you have hash tables in lisp?mquander2009-12-03T03:45:21Z2009-12-03T03:45:21Z<p>Sure. Here's the SRFI defining the standard hash table libraries in Scheme:</p>
<p><a href="http://srfi.schemers.org/srfi-69/srfi-69.html" rel="nofollow">http://srfi.schemers.org/srfi-69/srfi-69.html</a></p>
http://stackoverflow.com/questions/1828509/c-linq-how-to-apply-group-by/1828589#18285892Answer by mquander for C# LINQ -How to apply group by?mquander2009-12-01T20:13:27Z2009-12-01T20:13:27Z<pre><code>private enum Measure { Top, Average, Poor }
private Measure Classify(int nUnits)
{
if (nUnits >= 30000) return Measure.Top;
else if (nUnits >= 10000) return Measure.Average;
else return Measure.Poor;
}
/* ... */
var years = new int[] { 2008, 2009 };
var salesByMeasure =
AnaList.Where(a => years.Contains(a.Year))
.ToLookup(a => Classify(a.NumberOfUnitsSold));
var topSales = salesByMeasure[Measure.Top]; // e.g.
</code></pre>
http://stackoverflow.com/questions/1822811/int-array-to-string/1822825#18228257Answer by mquander for int array to stringmquander2009-11-30T22:22:48Z2009-11-30T22:28:11Z<pre><code>string result = arr.Aggregate("", (s, i) => s + i.ToString());
</code></pre>
<p>(Disclaimer: If you have a lot of digits (hundreds, at least) and you care about performance, I suggest eschewing this method and using a <code>StringBuilder</code>, as in JaredPar's answer.)</p>
http://stackoverflow.com/questions/1793030/strange-where-behaviour-somebody-has-an-explanation/1793040#17930405Answer by mquander for Strange .Where() behaviour. Somebody has an explanation?mquander2009-11-24T21:29:32Z2009-11-24T21:29:32Z<p>The only way this could actually be happening is if you were modifying <code>parameter</code> or <code>parameter.Constraint</code> somehow while you're enumerating through <code>transactions</code>. So if you're not doing that, look at whether you're actually observing what you think you're observing.</p>
<p>In principle, this should work fine.</p>
<p>EDIT: One obvious way you could be confused about your observation is if you didn't check the results of (actually evaluate) the lazy <code>Where</code> enumeration until later on, when <code>parameter</code> had changed. If you put a <code>ToArray</code> on the end to evaluate it immediately, you might find that it "magically" fixes itself.</p>
http://stackoverflow.com/questions/1786647/a-simple-lisp-question/1786672#178667211Answer by mquander for A simple Lisp questionmquander2009-11-23T23:02:12Z2009-11-23T23:02:12Z<p>What your teacher means is that you're defining this function</p>
<pre><code>(lambda (x y) (cons x y))
</code></pre>
<p>But there's already a function that exists to do that -- <code>cons</code> itself. So instead of passing your lambda as an argument to <code>reduce</code>, you could just pass <code>cons</code>.</p>
http://stackoverflow.com/questions/1786623/have-you-ever-had-a-requirement-for-a-non-gregorian-calendar-date-in-a-database/1786664#17866640Answer by mquander for Have you ever had a requirement for a non-Gregorian calendar date, in a database application?mquander2009-11-23T23:00:03Z2009-11-23T23:00:03Z<p>Some suppliers use Julian dates to represent expiration dates on products, but they're so simple that no special software support is needed.</p>
http://stackoverflow.com/questions/1765400/yield-return-with-null/1765424#17654244Answer by mquander for Yield Return with Nullmquander2009-11-19T18:18:34Z2009-11-19T18:18:34Z<p>This just isn't encouraged. When you're talking about a sequence, "null" should generally have the same semantics as "empty list."</p>
<p>Also, it's impossible to design the language to work in the way you'd like it to work here without extra syntax, since what if you were to hit a "<code>yield return [whatever]</code>" and then a "<code>return null</code>?"</p>
http://stackoverflow.com/questions/1763613/convert-comma-separated-string-of-ints-to-int-array/1763627#17636271Answer by mquander for Convert comma separated string of ints to int arraymquander2009-11-19T14:22:11Z2009-11-19T14:22:11Z<p>I don't see why taking out the enumerator explicitly offers you any advantage over using a <code>foreach</code>. There's also no need to call <code>AsEnumerable</code> on <code>chunks</code>.</p>
http://stackoverflow.com/questions/1758375/c-improved-algorithm/1758430#17584303Answer by mquander for C# Improved algorithmmquander2009-11-18T19:26:05Z2009-11-18T19:26:05Z<p>If not using <code>Except</code>, and if you wanted your solution to scale to large lists, your best bet would be to sort the second list or to make a hash table out of it, so that for every element of the first list, you can easily identify it in the second. (That's how <code>Except</code> works, more or less.)</p>
http://stackoverflow.com/questions/1752381/whats-the-best-way-to-return-multiple-enum-values-java-and-c/1752397#17523970Answer by mquander for What's the best way to return multiple enum values? (java and C#)mquander2009-11-17T22:42:18Z2009-11-17T22:42:18Z<p>It sounds fine to me. You want to return a list of the conditions that failed, and you're returning a list of the conditions that failed.</p>
http://stackoverflow.com/questions/1703270/implementation-of-red-black-tree-in-c/1703288#17032883Answer by mquander for Implementation of Red-Black Tree in C#mquander2009-11-09T19:47:04Z2009-11-09T19:47:04Z<p>You mostly just described <a href="http://msdn.microsoft.com/en-us/library/f7fta44c.aspx" rel="nofollow"><code>SortedDictionary<T, U></code></a>, except for the next-lowest/next-highest value binary search, which you could implement on your own without much difficulty.</p>
<p>Are there specific reasons that <code>SortedDictionary</code> is insufficient for you?</p>
http://stackoverflow.com/questions/1703226/find-and-other-interesting-characters/1703253#17032532Answer by mquander for Find "’" and other interesting characters.mquander2009-11-09T19:38:33Z2009-11-09T19:38:33Z<p>Visual Studio's regular-expression-based find/replace can search and replace Unicode characters, among which you can count the "smart quote" characters.</p>
<p>For example, if I find <code>\u2018</code> and <code>\u2019</code> and replace with <code>'</code>, that gets rid of the "smart" single quotes.</p>
<p>For the relevant Unicode character codes, you can check <a href="http://en.wikipedia.org/wiki/Quotation%5Fmark%5Fglyphs" rel="nofollow">this Wikipedia article</a> or surely many other places.</p>
http://stackoverflow.com/questions/1652538/what-really-is-good-enough-for-a-late-project/1652554#16525542Answer by mquander for What really is 'good enough' for a late project?mquander2009-10-30T21:59:05Z2009-10-30T21:59:05Z<p>Everyone has their own standards of good enough; on one level, "good enough" is "whatever you can convince people to pay you for."</p>
<p>However, if you want to enjoy your work, I suggest that "good enough" should be "something you are proud of making."</p>
http://stackoverflow.com/questions/1651619/optimal-linq-query-to-get-a-random-sub-collection/1651644#16516445Answer by mquander for Optimal LINQ query to get a random sub collectionmquander2009-10-30T18:49:43Z2009-10-30T18:49:43Z<p><a href="http://en.wikipedia.org/wiki/Fisher%E2%80%93Yates%5Fshuffle" rel="nofollow">Shuffle</a> the collection into a random order and take the first <code>n</code> items from the result.</p>
http://stackoverflow.com/questions/1627360/how-do-i-get-values-from-selecteditem-in-combobox-with-linq-and-c-3-5/1627371#16273712Answer by mquander for How do I get values from SelectedItem in ComboBox with Linq and C# 3.5mquander2009-10-26T21:12:58Z2009-10-26T21:12:58Z<p>Unfortunately, there's no good way to do that without reflection. Anonymous types aren't really meant to be stashed and retrieved from later in absence of some big reflection framework to check them out. They're pretty much just designed for temporary convenience in methods that are rearranging data internally.</p>
<p>I suggest that you make a named type with the same three fields; then it's a trivial matter to cast it and get what you want back out.</p>
http://stackoverflow.com/questions/1590723/flatten-list-in-linq/1590741#15907413Answer by mquander for Flatten List in LINQmquander2009-10-19T19:51:45Z2009-10-19T19:51:45Z<p>Like this?</p>
<pre><code>var iList = Method().SelectMany(n => n);
</code></pre>
http://stackoverflow.com/questions/1930196/whats-the-easiest-way-to-generate-a-listint-of-ordered-numbers-in-c/1930206#1930206Comment by mquander on What's the easiest way to generate a List<int> of ordered numbers in C#?mquander2009-12-18T19:26:11Z2009-12-18T19:26:11ZIndeed, mind the method signature.http://stackoverflow.com/questions/1928482/whats-the-standard-algorithm-for-syncing-two-lists-of-objectsComment by mquander on What's the standard algorithm for syncing two lists of objects?mquander2009-12-18T14:34:06Z2009-12-18T14:34:06ZThe "standard algorithm" is definitely to keep the lists sorted prior to merging. Barring that, I think you have to do something pretty much like you describe here.http://stackoverflow.com/questions/1928482/whats-the-standard-algorithm-for-syncing-two-lists-of-objects/1928525#1928525Comment by mquander on What's the standard algorithm for syncing two lists of objects?mquander2009-12-18T14:32:34Z2009-12-18T14:32:34ZI missed this too, but he explicitly ruled out sorting in his problem statement.http://stackoverflow.com/questions/1926099/a-function-in-scheme-to-replace-all-occurences-of-an-element-in-a-list-with-anoth/1926127#1926127Comment by mquander on A function in scheme to replace all occurences of an element in a list with another elementmquander2009-12-18T05:26:28Z2009-12-18T05:26:28ZFair enough, that's probably true.http://stackoverflow.com/questions/1926099/a-function-in-scheme-to-replace-all-occurences-of-an-element-in-a-list-with-anoth/1926127#1926127Comment by mquander on A function in scheme to replace all occurences of an element in a list with another elementmquander2009-12-18T04:17:15Z2009-12-18T04:17:15ZI assumed that he is working from a guide or textbook that has gotten nowhere near <code>map</code> yet.http://stackoverflow.com/questions/1917568/what-does-the-schedule-during-the-first-few-days-look-like-for-new-hires-in-your/1917627#1917627Comment by mquander on What does the schedule during the first few days look like for new hires in your company?mquander2009-12-16T21:45:42Z2009-12-16T21:45:42Z+1, worked for me.http://stackoverflow.com/questions/1916260/more-fluent-c-net/1916334#1916334Comment by mquander on More fluent C# / .NETmquander2009-12-16T17:45:55Z2009-12-16T17:45:55ZIt is not practical or wise to refrain from the right thing because other people might not have an appropriate working knowledge of the language. The question at hand should be whether this is the right thing or not.http://stackoverflow.com/questions/1915347/c-associative-array/1915370#1915370Comment by mquander on C# associative arraymquander2009-12-16T15:33:45Z2009-12-16T15:33:45Z@Malfist: That's not true. A Dictionary is a hash table and won't keep them in order at all.http://stackoverflow.com/questions/1908710/function-in-scheme-that-checks-whether-the-length-of-a-list-is-even/1908770#1908770Comment by mquander on Function in Scheme that checks whether the length of a list is even mquander2009-12-15T21:56:33Z2009-12-15T21:56:33ZI missed putting the zero in that function in my comment, but I'm sure you can fill it in.http://stackoverflow.com/questions/1908710/function-in-scheme-that-checks-whether-the-length-of-a-list-is-even/1908770#1908770Comment by mquander on Function in Scheme that checks whether the length of a list is even mquander2009-12-15T19:50:28Z2009-12-15T19:50:28ZOK, what I was getting at was something like Jerry's suggestion. You've suffered enough, so I'll just give some code: <code>(define even-length? (lambda (l) (equal? (remainder (length l) 2))))</code> This code works because <code>equal?</code> already returns <code>#t</code> or <code>#f</code>, which is what you want from your function anyway.http://stackoverflow.com/questions/1908710/function-in-scheme-that-checks-whether-the-length-of-a-list-is-even/1908770#1908770Comment by mquander on Function in Scheme that checks whether the length of a list is even mquander2009-12-15T18:15:45Z2009-12-15T18:15:45ZCloser, but <code>length(l)</code> is not the way to call a function in Scheme, and it could be much simpler; think of how to write the same thing without the <code>cond</code>.http://stackoverflow.com/questions/1905444/finding-a-triplet-having-a-given-sumComment by mquander on finding a triplet having a given summquander2009-12-15T06:05:05Z2009-12-15T06:05:05ZYou may want to read existing literature on the subset sum problem, which is a more general version of what you are proposing. <a href="http://en.wikipedia.org/wiki/Subset_sum_problem" rel="nofollow">en.wikipedia.org/wiki/Subset_sum_problem</a>http://stackoverflow.com/questions/1876336/in-what-areas-of-programming-is-a-knowledge-of-mathematics-helpful/1876352#1876352Comment by mquander on In what areas of programming is a knowledge of mathematics helpful?mquander2009-12-09T20:14:14Z2009-12-09T20:14:14ZNo point giving code for neat visualizations without being able to look at them, but you can look at someone else's nice code together with videos here: <a href="http://mndl.hu/hackpact" rel="nofollow">mndl.hu/hackpact</a>http://stackoverflow.com/questions/1876336/in-what-areas-of-programming-is-a-knowledge-of-mathematics-helpful/1876352#1876352Comment by mquander on In what areas of programming is a knowledge of mathematics helpful?mquander2009-12-09T20:00:51Z2009-12-09T20:00:51ZI certainly use a lot of vector and matrix operations, meaning trigonometry and linear algebra, when making neat visualizations of stuff.http://stackoverflow.com/questions/1875139/how-to-decide-build-from-scratch-or-reverse-engineer-off-the-shelf-solutionComment by mquander on How to decide: build from scratch or reverse engineer off the shelf solutionmquander2009-12-09T16:54:06Z2009-12-09T16:54:06Z@John: Emacs is free, so there's no need to either reverse engineer it or build it from scratch.