Why isn't this simple Perl push/pop program working? - Stack Overflow most recent 30 from stackoverflow.com2009-12-20T02:08:30Zhttp://stackoverflow.com/feeds/question/1081476http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1081476/why-isnt-this-simple-perl-push-pop-program-working3Why isn't this simple Perl push/pop program working?Carson Myers2009-07-04T04:22:02Z2009-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 = <STDIN>);
foreach (@strings){
push @revstrings, $_;
}
while($i++ <= 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><=</code> in the while loop to just <code><</code>.</p>
http://stackoverflow.com/questions/1081476/why-isnt-this-simple-perl-push-pop-program-working/1081490#108149014Answer by Stobor for Why isn't this simple Perl push/pop program working?Stobor2009-07-04T04:30:03Z2009-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#10827190Answer by Hynek -Pichi- Vychodil for Why isn't this simple Perl push/pop program working?Hynek -Pichi- Vychodil2009-07-04T18:18:44Z2009-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 (<STDIN>) {
push @lines, $_
}
while(@lines){
print pop @lines;
}
</code></pre>
<p>less typing </p>
<pre><code>@lines = <STDIN>;
while(@lines){
print pop @lines;
}
</code></pre>
<p>lesser typing</p>
<pre><code>@lines = <STDIN>;
print reverse @lines;
</code></pre>
<p>lesser typing</p>
<pre><code>print reverse <>;
</code></pre>
<p>but far best solution is</p>
<pre><code>exec("tac");
</code></pre>