Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can you reverse an array without using the reverse() method?

public class Main extends Sprite
{
    private var _reversedList:Array = new Array();      

    public function Main()
    {   
        var yourShoppingList:Array = ["Milk","Bread","Eggs","Cereal","Cheese","Ham"];
        shoppingList(yourShoppingList);
        trace("The original array was " + yourShoppingList + " and now it is reversed as " + _reversedList + ".");
    }

    private function shoppingList(items:Array):Array {
        while(items.length){
            var lastItem:String = items.pop();
            _reversedList.unshift(lastItem);
        }
        return _reversedList;
    }
}

This is what I have so far. I tried using _reversedList.unshift(items.pop()); but it was giving me an error, so I ended up creating a variable, and now it seems fine? But regardless, it's not reversing the Array, and I'm not sure why.

Thank you for your time and help. I really appreciate it.

share|improve this question
3  
erm, why dont you want to use reverse()? – Lee Burrows Feb 16 at 2:14
That's my opinion. I'm taking a class, and they don't want us to use reverse(). It's stupid. @.@ – Lindsay Feb 16 at 23:27

1 Answer

up vote 2 down vote accepted

Changing

_reversedList.unshift(lastItem);

to

_reversedList.push(lastItem);

works for me. Taking the last item and pushing it in as the first item on the new array.

share|improve this answer
Yep, that was it for sure. Thank you! – Lindsay Feb 16 at 20:52

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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