Omnimaga
Calculator Community => TI Calculators => Axe => Topic started by: Raylin on April 11, 2010, 09:45:12 pm
-
How do you SortA() in Axe?
-
Bubble sort?
-
bubbles?
-
No.
I meant sorting data or the data in an AppVar in ascending order.
-
gimme a couple of minutes, I'll try and make something that'll do that
-
Player, you are a life-saver.
P.S. If you use some inference, you can guess what this is all for.
-
Wait is this data numbers? Or something else? Alphabetically? o.O
We should have an Axe sorting competition ^^
-
Oi.
Numbers.
Integers.
Sorted in the AppVar in ascending order, mang.
:P
-
Wait is this data numbers? Or something else? Alphabetically? o.O
We should have an Axe sorting competition ^^
Maybe we could have some kind of competition page like at UTI :P Could be fun.
As for on topic, I've been thinking of ways but can't come up with a lot...plus I've got other stuff going on right now. So if _player hasn't come up with something later when I'm free I shall try.
-
Thank you, sir.
-
well, I wrote one that's pretty much a one time wonder. The first time you run it it works fine, the second/third/fourth/etc don't, the last 3 digits are always in the wrong order. I'll work on it tomarrow some more. If someone can figure out what's wrong with it, please tell me (its been "bugging" me for a while).
-
I don't know if it is just me or not but it doesn't appear like your files have extensions on them. I don't know how to open them or anything ???
-
That could be useful if I do something like Illusiat 13 item menu, where each individual item copy takes one slot but are stored in the first avaliable slot, meaning you need to sort them eventually else it becomes a mess.
@Meishe: I'm not sure but I think he did them under Linux. I wonder if he named them wrong or something. What I would try to do is rename them with 8xp extensions and open with SourceCoder (or Wabbitemu) first, and if it fails, then the files may be corrupted.
-
Here is an implementation of a quick bubble sort. Its not very fast, but i couldnt get the merge sort to work. It can sort 100 elements in about a second
List is sorted in place in L1 (no other lists needed)
N is length
1->S
While S
0->S
For(F,0,N-1
If {L1+F}>{L1+F+1}
Expr(L1+F,L1+F+1,1
1->S
End
End
End
-
Wow I posted almost at the same time as Meishe, then I edit my post to reply to him, then Builderboy posts :O
Nice Builderboy. I think 1 second for sorting something that doesn't require speed should be tolerable, especially in menus.
-
Well I tried opening them in TI-Coder and they didn't work. I can try WabbitEmu though.
-
actually, they are just text documents, I didn't want to boot into windows to send the program. So I typed them up.
Edit: good job builderboy, never could get mine to work :(
-
Correct me if i am wrong, does yours work by finding the highest element, then the next highest, and so on?
-
it (should) work the other way, finding the lowest element, then the next lowest, etc and placing them in L3
-
actually, they are just text documents, I didn't want to boot into windows to send the program. So I typed them up.
Edit: good job builderboy, never could get mine to work :(
Oh lol ok so I guess we'll just need to add txt extensions then :P. I'll probably check them later
-
oh, woops, I really thought they had .txt extensions. My bad