Case (or switch) in a for loop or for loop in a case (or switch)? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T22:50:27Z http://stackoverflow.com/feeds/question/244677 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/244677/case-or-switch-in-a-for-loop-or-for-loop-in-a-case-or-switch 0 Case (or switch) in a for loop or for loop in a case (or switch)? Peter Turner 2008-10-28T20:13:50Z 2008-10-28T20:33:58Z <p>Can it be known in general whether or not placing a case within a for loop will result in bad assembly. I'm interested mainly in Delphi, but this is an interesting programming question, both in terms of style and performance. </p> <p>Here are my codez!</p> <pre> case ResultList.CompareType of TextCompareType: begin LastGoodIndex := -1; for I := 1 to ResultList.Count -1 do if (LastGoodIndex = -1) and (not ResultList[I].Indeterminate) then LastGoodIndex := I else if not ResultList[I].Indeterminate then begin if (StrComp(ResultList[LastGoodIndex].ResultAsText, ResultList[I].ResultAsText) > 0) and (Result FalseEval) then Result := TrueEval else Result := FalseEval; LastGoodIndex := I; end; end; end; NumericCompareType: begin //Same as above with a numeric comparison end; DateCompareType: begin //Same as above with a date comparison end; BooleanCompareType: begin //Same as above with a boolean comparison end; </pre> <p>alternatively I could write </p> <pre> begin LastGoodIndex := -1; for I := 1 to ResultList.Count -1 do if (LastGoodIndex = -1) and (not ResultList[I].Indeterminate) then LastGoodIndex := I else if not ResultList[I].Indeterminate then begin case ResultList.CompareType of TextCompareType: begin if (StrComp(ResultList[LastGoodIndex].ResultAsText, ResultList[I].ResultAsText) > 0) and (Result FalseEval) then Result := TrueEval else Result := FalseEval; LastGoodIndex := I; end; NumericCompareType: begin //Same as above with a numeric comparison end; DateCompareType: begin //Same as above with a date comparison end; BooleanCompareType: begin //Same as above with a boolean comparison end; end; end; end; </pre> <p>I don't like the second way because I'm asking a question I know the answer to in a for loop and I don't like the first way because I'm repeating the code I use to figure out which of my objects contain valid information. </p> <p>Perhaps there is a design pattern someone could suggest that would circumvent this all together.</p> http://stackoverflow.com/questions/244677/case-or-switch-in-a-for-loop-or-for-loop-in-a-case-or-switch/244687#244687 1 Answer by Gamecat for Case (or switch) in a for loop or for loop in a case (or switch)? Gamecat 2008-10-28T20:15:48Z 2008-10-28T20:24:19Z <p>Why not using subclasses? </p> <p>This saves the use of the case statement.</p> <pre><code>TComparer = class protected function Compare(const AItem1, AItem2: TItem): Boolean; virtual; abstract; public procedure DoCompare(ResultList: ...); end; TTextComparer = class (TComparer) protected function Compare(const AItem1, AItem2: TItem): Boolean; override; end; procedure TComparer.DoCompare(ResultList: ...); var LastGoodIndex, I : Integer; begin LastGoodIndex := -1; for I := 1 to ResultList.Count -1 do if (LastGoodIndex = -1) and (not ResultList[I].Indeterminate) then LastGoodIndex := I else if not ResultList[I].Indeterminate then begin if Compare(ResultList[LastGoodIndex], ResultList[I]) then Result := TrueEval else Result := FalseEval; end; end; function TTextComparer.Compare(const AItem1, AItem2: TItem): Boolean; begin Result := StrComp(ResultList[LastGoodIndex].ResultAsText, ResultList[I].ResultAsText) &gt; 0) end; </code></pre> http://stackoverflow.com/questions/244677/case-or-switch-in-a-for-loop-or-for-loop-in-a-case-or-switch/244747#244747 1 Answer by Tanktalus for Case (or switch) in a for loop or for loop in a case (or switch)? Tanktalus 2008-10-28T20:31:53Z 2008-10-28T20:31:53Z <p>I suspect that it's more efficient to use a lambda or closure or even just a function reference. My Pascal's rusted right out, so my example is perl:</p> <pre><code>my %type = ( TextCompareType =&gt; sub { $_[0] lt $_[1] }, NumericCompareType =&gt; sub { $_[0] &lt; $_[1] }, DateCompareType =&gt; sub { ... }, BooleanCompareType =&gt; sub { ... }, ); for (my $i = 1; $i &lt;= $#list; ++$i) { if ( $type{$ResultList{CompareType}}-&gt;($list[$i-1], $list[$i]) ) { $result = 1; # ? } } </code></pre> <p>I'm not really following most of your code, but I think I've captured the essence of the question without fully capturing the code.</p> <p>Another solution is to create comparator objects as subclasses off a base comparator class, and then call the object's compare function, but you do mention trying to stay structured instead of OO.</p> http://stackoverflow.com/questions/244677/case-or-switch-in-a-for-loop-or-for-loop-in-a-case-or-switch/244761#244761 4 Answer by Kristopher Johnson for Case (or switch) in a for loop or for loop in a case (or switch)? Kristopher Johnson 2008-10-28T20:33:58Z 2008-10-28T20:33:58Z <p>In general, there is no way to know what assembly-language output will be generated for particular programming-language constructs. Every compiler is different. Even for a particular compiler, every application will be different, and the compiler will have different optimization strategies available to it.</p> <p>If you are really worried about it, the easiest thing to do is compile the program and see what it generates. Play around with code and optimization settings until it looks how you want it to. (Or write assembly by hand.)</p> <p>The common advice is to just write the clearest code you can, and don't worry about tweaking performance unless you really need to.</p>