Skip to content

Instantly share code, notes, and snippets.

@nutszebra
Created November 23, 2015 09:33
Show Gist options
  • Save nutszebra/4e2c041f3920e565d58d to your computer and use it in GitHub Desktop.
Save nutszebra/4e2c041f3920e565d58d to your computer and use it in GitHub Desktop.
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#Link: http://www.cl.ecei.tohoku.ac.jp/nlp100/
"""
hightemp.txt: http://www.cl.ecei.tohoku.ac.jp/nlp100/data/hightemp.txt
は,日本の最高気温の記録を「都道府県」「地点」「℃」「日」のタブ区切り形式で格納したファイルである.
以下の処理を行うプログラムを作成し,hightemp.txtを入力ファイルとして実行せよ.
Question 18:
18. 各行を3コラム目の数値の降順にソート
各行を3コラム目の数値の逆順で整列せよ(注意: 各行の内容は変更せずに並び替えよ).
確認にはsortコマンドを用いよ(この問題はコマンドで実行した時の結果と合わなくてもよい).
"""
import subprocess
import requests
import os
import re
def download(url, dir, params={}):
dl = requests.get(url, params=params)
with file(dir, "wb") as f:
f.write(dl.content)
import os
import mmap
import time
def countLine(path):
start = time.time()
file = os.open(path, os.O_RDONLY)
buf = mmap.mmap(file, 0, prot=mmap.PROT_READ)
answer = 0
readline = buf.readline
while readline():
answer += 1
end = time.time()
return (answer, end - start)
def readText(path, start = 1, end = float("Inf"), direction = "forward", block = None):
"""
path: file path to read
start: number of line to start reading
end: number of line to stop reading
start >= end if end >= 1
direction: order of lines that was read
block: number of output block
"""
#"3.4" --> 3
start = int(float(start))
block = int(float(block)) if not block == None else None
if not end == float("Inf"):
end = int(float(end))
def forward(a, b):
return a + b
def backward(a, b):
return b + a
if direction == "forward":
append = forward
else:
append = backward
#non-block case
if block == None:
answer = ""
count = 0
#start measuring
time_start = time.time()
with file(path, "r") as f:
for i in xrange(int(start)):
line = f.readline()
count = count + 1
while line:
answer = append(answer, line)
if count >= end:
break
line = f.readline()
count = count + 1
time_end = time.time()
return (answer, time_end - time_start)
#block case
else:
answer = ""
if end == float("Inf"):
end, time1 = countLine(path)
else:
time1 = 0
start = max(start, end -block + 1)
count = 0
#start measuring
time_start = time.time()
with file(path, "r") as f:
for i in xrange(int(start)):
line = f.readline()
count = count + 1
while line:
answer = append(answer, line)
if count >= end:
break
line = f.readline()
count = count + 1
time_end = time.time()
return (answer, time_end - time_start + time1)
def remove(path):
if os.path.exists(path):
os.remove(path)
def sortColumn(path, column):
cmd = "sort " + path + " -k " + str(column)
with file("./sortColumn.txt", "wb") as f:
subprocess.call(cmd, stdout=f, shell=True)
with file("./sortColumn.txt", "r") as f:
answer = readText("sortColumn.txt")[0]
remove("./sortColumn.txt")
return answer
#download hightemp.txt
download("http://www.cl.ecei.tohoku.ac.jp/nlp100/data/hightemp.txt","./hightemp.txt") if not os.path.exists("./hightemp.txt") else None
content = readText("./hightemp.txt")[0]
def getKey(item):
return item[2]
content_split = [ele.split("\t") for ele in content.split("\n")][:-1]
sorted_content_split = sorted(content_split, key=getKey, reverse = False)
print("original file: \n" + content)
print("sort by column 3 as basic axis: \n" + "\n".join(["\t".join(ele) for ele in sorted_content_split]))
print("sort by linux command: \n" + sortColumn("./hightemp.txt", 3))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment