Why isn't this simple Perl push/pop program working? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T02:08:30Z http://stackoverflow.com/feeds/question/1081476 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1081476/why-isnt-this-simple-perl-push-pop-program-working 3 Why isn't this simple Perl push/pop program working? Carson Myers 2009-07-04T04:22:02Z 2009-08-01T19:50:29Z <p>I'm reading the Llama (<a href="http://oreilly.com/catalog/9780596520106/" rel="nofollow">Learning Perl</a>) book, and working on the exercises. And for this exercise:</p> <blockquote> <p>Write a program that reads a list of strings on separate lines until end-of-input and prints out the list in reverse order. [. . .]</p> </blockquote> <p>Well, I already figured out a simpler approach (I remembered you could use <code>reverse</code> on arrays... Perl is so... awesome so far), but I am wondering why this one isn't working.</p> <pre><code>#!/usr/bin/perl use 5.010; chomp(@strings = &lt;STDIN&gt;); foreach (@strings){ push @revstrings, $_; } while($i++ &lt;= scalar @revstrings){ say pop @revstrings; } </code></pre> <p>It goes like this:</p> <blockquote> <p>$ ./first<br /> <strong>one<br /> two<br /> three</strong><br /> <em>[^D]</em><br /> three<br /> two<br /> $ </p> </blockquote> <p>the output is the same if I change the <code>&lt;=</code> in the while loop to just <code>&lt;</code>.</p> http://stackoverflow.com/questions/1081476/why-isnt-this-simple-perl-push-pop-program-working/1081490#1081490 14 Answer by Stobor for Why isn't this simple Perl push/pop program working? Stobor 2009-07-04T04:30:03Z 2009-07-04T04:30:03Z <p>You'll never get past halfway... Each time through that last iteration, you'd get:</p> <ul> <li><code>$i++</code> means that <code>$i</code> will increase by one; </li> <li><code>pop @revstrings</code> will mean that <code>scalar @revstrings</code> will decrease by one.</li> </ul> <p>They'll meet in the middle, when <code>$i++</code> just exceeds half the original <code>@revstrings</code> length.</p> <p>Actually, the <code>$i++</code> is unnecessary, since <code>scalar @revstrings</code> will be zero when the array is empty, so you just need: </p> <pre><code>while(scalar @revstrings){ say pop @revstrings; } </code></pre> http://stackoverflow.com/questions/1081476/why-isnt-this-simple-perl-push-pop-program-working/1082719#1082719 0 Answer by Hynek -Pichi- Vychodil for Why isn't this simple Perl push/pop program working? Hynek -Pichi- Vychodil 2009-07-04T18:18:44Z 2009-08-01T19:22:43Z <p><strong>EDIT</strong>: Short answer is "Because your loop condition is wrong." more verbose "scalar @revstrings is evaluated each iteration".</p> <pre><code>while (&lt;STDIN&gt;) { push @lines, $_ } while(@lines){ print pop @lines; } </code></pre> <p>less typing </p> <pre><code>@lines = &lt;STDIN&gt;; while(@lines){ print pop @lines; } </code></pre> <p>lesser typing</p> <pre><code>@lines = &lt;STDIN&gt;; print reverse @lines; </code></pre> <p>lesser typing</p> <pre><code>print reverse &lt;&gt;; </code></pre> <p>but far best solution is</p> <pre><code>exec("tac"); </code></pre>