Python Forum
Sort without using sort
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Sort without using sort
#1
Text file:
425 300 1
50 10 15
6 9 3
2 12 6
70 69 71
1 2 3

My code:
#Project#1-Quyen Nguyen
file="Project1.txt"
infile=open(file)

count=0
for line in infile:
strip_line=line.rstrip()
count=count+1
strip_line=line.split()
value0=strip_line[0]
value1=strip_line[1]
value2=strip_line[2]
numval0=int(value0,base=10)
numval1=int(value1,base=10)
numval2=int(value2,base=10)
print("line#,numval0,numval1,numval2)

I just take the class for 2 week and I am stuck with my HW. My question is how can i sort it in numerical order without using sort.
Reply


Messages In This Thread
Sort without using sort - by qhnguyen - Sep-20-2017, 06:27 AM
RE: Sort without using sort - by wavic - Sep-20-2017, 08:27 AM
RE: Sort without using sort - by ichabod801 - Sep-20-2017, 07:12 PM
RE: Sort without using sort - by qhnguyen - Sep-21-2017, 02:31 AM
RE: Sort without using sort - by nilamo - Sep-21-2017, 08:11 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
Question Frog codility leap sort variant MoreMoney 5 507 Apr-06-2024, 08:47 PM
Last Post: deanhystad
  How to sort a list with duplicates and return their unique indices. Echoroom 3 3,558 Sep-23-2022, 07:53 AM
Last Post: deanhystad
  sorting a list using unicodes acending order, no loops, no sort(), using recursion lrn2codee 14 6,482 Jun-23-2021, 07:33 PM
Last Post: deanhystad
  Sort and merge flintstone 1 1,937 Jun-14-2021, 07:32 PM
Last Post: Larz60+
  How can I sort my column so that NaN is at the bottom? soft 3 2,432 Feb-06-2021, 01:02 PM
Last Post: ibreeden
  how to sort a list without .sort() function letmecode 3 3,475 Dec-28-2020, 11:21 PM
Last Post: perfringo
  Sort on basis of (name,age,score) pyzyx3qwerty 9 9,631 May-14-2020, 08:29 AM
Last Post: pyzyx3qwerty
  Sort last pyzyx3qwerty 7 4,818 May-05-2020, 02:58 PM
Last Post: DeaD_EyE
  insertion sort brobro 3 2,236 Apr-24-2020, 01:29 PM
Last Post: Godserena
  Sort objects by protected properties. Sigriddenfeta 1 1,910 Mar-17-2020, 04:11 AM
Last Post: Larz60+

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020