I'm creating a class where one of the methods inserts a new item into the sorted list. The item is inserted in the corrected (sorted) position in the sorted list. I'm not allowed to use any built-in list functions or methods other than [], [:], +, and len though.. This is the part that's really confusing to me... What would be the best way in going about this??

link|improve this question

60% accept rate
3  
Homework? You would probably start by searching the Web how to insert elements into a sorted list. – Felix Kling Nov 6 '11 at 1:16
1  
if only there was a well known sorting algorithm that was suited to INSERTION =P – jon_darkstar Nov 6 '11 at 1:25
I'm not allowed to use and built-in list functions though – Will S Nov 6 '11 at 16:36
feedback

3 Answers

Hint 1: You might want to study the Python code in the bisect module.

Hint 2: Slicing can be used for list insertion:

>>> s = ['a', 'b', 'd', 'e']
>>> s[2:2] = ['c']
>>> s
['a', 'b', 'c', 'd', 'e']
link|improve this answer
+1 for at least mentioning The Right Way to do this outside of a classroom setting. – Triptych Nov 6 '11 at 1:49
+1 for slicing trick. Python is so magic, there is always something to learn:) – pajton Nov 6 '11 at 13:32
+1 for leading a horse to water. I'm curious, is there a reason to prefer slicing over insort()? – kkurian Feb 3 at 20:11
feedback

Usually it's great to give us what you've got already. This hint might help clear up your difficulties, but if you give us a code snippet (or even pseudocode) we might be better able to help you figure out how to get past your point of confusion:

>>> x = range(0,5)
>>> y = range(5,10)
>>> x
[0, 1, 2, 3, 4]
>>> y
[5, 6, 7, 8, 9]
>>> x+y
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9]

Also, for homework problems, you should generally use the 'homework' tag.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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