Skip to content

Commit a139a42

Browse files
committed
initial commit
1 parent 47a587e commit a139a42

File tree

35 files changed

+1467682
-0
lines changed

35 files changed

+1467682
-0
lines changed

Files/data.txt

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
This is some sample data...

Files/main.py

+78
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
1+
2+
'''
3+
# creating a file
4+
f=open('data.txt','w')
5+
f.write('This is some sample data...')
6+
f.close()
7+
8+
# Then open the file and show viewers
9+
'''
10+
11+
'''
12+
# reading from a file
13+
f=open('data.txt','r')
14+
print f.read()
15+
f.close()
16+
17+
# Then run the script and show viewers the output
18+
'''
19+
20+
'''
21+
# appending to a file
22+
f=open('data.txt','a')
23+
f.write('\nAnd this is some more data...')
24+
f.close()
25+
26+
# Then open the file and show viewers
27+
'''
28+
29+
'''
30+
# iterating over each line of a file
31+
f=open('data.txt','r')
32+
for line in f:
33+
print line.strip() # remove the \n endline
34+
f.close()
35+
36+
# Then show the output in terminal
37+
'''
38+
39+
'''
40+
# printing out each byte of the file
41+
from os.path import getsize
42+
f=open('data.txt','r')
43+
for i in range(getsize('data.txt')):
44+
f.seek(i)
45+
print "Byte #%d:\t%s"%(i,f.read(1))
46+
f.close()
47+
48+
# Then show the output in terminal
49+
'''
50+
51+
'''
52+
# overwriting a file
53+
f=open('data.txt','w')
54+
f.write('Out with the old, in with the new.')
55+
f.close()
56+
57+
# Then open the file and show viewers
58+
'''
59+
60+
'''
61+
# checking if a file exists
62+
from os.path import isfile
63+
print "Is data.txt a file?",isfile('data.txt')
64+
print "Is dater.txt a file?",isfile('dater.txt')
65+
66+
# Then show the output in terminal
67+
'''
68+
69+
'''
70+
# viewing the contents of a directory
71+
from os import listdir
72+
print "Elements of current directory:",listdir('.')
73+
74+
# Then show the output in terminal
75+
'''
76+
77+
78+

binary_search/main.py

+43
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
2+
# performs binary search on input list
3+
def binary_search(a,value):
4+
if len(a)==0: return False
5+
if len(a)==1:
6+
if a[0]==value: return True
7+
else: return False
8+
9+
mid=a[len(a)/2]
10+
if value==mid: return True
11+
if value<mid: return binary_search(a[:len(a)/2],value)
12+
if value>mid: return binary_search(a[len(a)/2:],value)
13+
14+
15+
# performs linear search on the input list
16+
def linear_search(a,value):
17+
for elem in a:
18+
if elem==value: return True
19+
return False
20+
21+
def create_array(size,max):
22+
from random import randint
23+
return [randint(0,max) for _ in range(size)]
24+
25+
26+
from time import time
27+
28+
a=create_array(10000,10000)
29+
30+
t0=time()
31+
linear_search(a,20000)
32+
t1=time()
33+
print "Linear Time: %0.5f" % (t1-t0)
34+
35+
t0=time()
36+
a=sorted(a)
37+
binary_search(a,20000)
38+
t1=time()
39+
print "Binary Time: %0.5f" % (t1-t0)
40+
41+
42+
#a=[1,2,3,4,5,6,7,8,9]
43+
#print binary_search(a,5)

bogo_sort/main.py

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
2+
from random import randint,shuffle
3+
4+
def create_array(size=10,max=50):
5+
return [randint(0,max) for _ in range(size)]
6+
7+
8+
def bogo_sort(a):
9+
def is_sorted(a):
10+
for i in xrange(1,len(a)):
11+
if a[i]<a[i-1]: return False
12+
return True
13+
14+
ct=0
15+
while not is_sorted(a):
16+
shuffle(a)
17+
ct+=1
18+
return ct,a
19+
20+
a=create_array(10,10)
21+
print "Unsorted:",a
22+
ct,s=bogo_sort(a)
23+
print "Sorted: ",s

bst_validator/main.py

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
2+
class

bubble_sort/main.py

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
2+
def bubble_sort(arr):
3+
swapped=True
4+
while swapped:
5+
swapped=False
6+
for i in range(1,len(arr)):
7+
if arr[i-1]>arr[i]:
8+
arr[i],arr[i-1] = arr[i-1],arr[i]
9+
swapped=True
10+
return arr
11+
12+
a=[4,3,2,1]
13+
print a
14+
a=bubble_sort(a)
15+
print a

0 commit comments

Comments
 (0)