2018-09-26

算法

二分查找

def binary_search(list,item):
    low =0
    high = len(list)-1
    while(low<=high):
        mid = (low + high)//2
        guess = list[mid]
        if guess == item:
            return mid
        if guess < item:
            high = mid-1
        else:
            low = mid+1
    return None
l = [2,4,6,8,10]
x = binary_search(l,6)
if x==None:
    print("列表中无此数")
else:
    print('此数在列表中的第%s位'%x)

运行结果

此数在列表中的第2位

选择排序

#选择排序
def findSmallest(arr):
    smallest = arr[0]
    smallest_index = 0
    for i in range(1, len(arr)):
        if arr[i]<smallest:
            smallest = arr[i]
            smallest_index = i
    return smallest_index
def selectionSort(arr):
    newArr = []
    for i in range(len(arr)):
        smallest = findSmallest(arr)
        newArr.append(arr.pop(smallest))
    return newArr
l = [6,8,7,9,0,1,3,2,4,5]
print(selectionSort(l))

运行结果

[0, 1, 2, 3, 4, 5, 6, 7, 8, 9]

快速排序

def quicksort(arr):
    if len(arr)<2:
        return arr
    left = []
    right =[]
    pivot = arr[0]
    for i in range(1,len(arr)):
        if arr[i]<pivot:
            left.append(arr[i])
        else:
            right.append(arr[i])
    return quicksort(left) + [pivot] +quicksort(right)
a = quicksort([6,8,7,9,0,1,3,2,4,5])
print(a)
def quicksort(arr):
    if len(arr) < 2:
        return arr
    else:
        pivot = arr[0]
        less = [i for i in arr[1:] if i <=pivot]
        greater = [i for i in arr[1:] if i > pivot]
        return quicksort(less) + [pivot] + quicksort(greater)

运行结果

[0, 1, 2, 3, 4, 5, 6, 7, 8, 9]

广度优先搜索

#实现图
graph = {}
graph["you"] = ["alice","bob","claire"]
graph["bob"] = ["anuj","peggy"]
graph["alice"] = ["peggy"]
graph["claire"] = ["thom","jonny"]
graph["anuj"] = []
graph["peggy"] = []
graph["thom"] = []
graph["jonny"] = []


#创建一个队列
from collections import deque
search_queue = deque()  #创建一个队列
search_queue +=graph["you"]   #将你的邻居都加入到这个搜索队列中


#广度优先搜索
def bfsearch(name):
    search_queue = deque()
    search_queue += graph[name]
    searched = []          #该列表用于记录检查过的人
    while search_queue:
        person = search_queue.popleft()
        if not person in searched:    #仅当这个人没检查过时才检查
            if person_is_seller(person):
                print(person + " is a mango seller!")
                return True
            else:
                search_queue += graph[person]
                searched.append(person)     #将这个人标记为检查过
    return False

def person_is_seller(name):
    return name[-1] == 'm'

bfsearch("you")

运行结果

thom is a mango seller!

深度优先搜索

#图
graph = {}
graph["you"] = ["alice","bob","claire"]
graph["bob"] = ["anuj","peggy"]
graph["alice"] = ["peggy"]
graph["claire"] = ["thom","jonny"]
graph["anuj"] = []
graph["peggy"] = []
graph["thom"] = []
graph["jonny"] = []
#栈类
class SStack():          #基于顺序表技术实现的栈类
    def __init__(self):  #用list对象_elems存储栈中元素
        self._elems = []

    def is_empty(self):
        return self._elems == []

    def top(self):
        if self._elems == []:
            print("栈为空")
        return self._elems[-1]

    def push(self,elem):
        self._elems.append(elem)

    def pop(self):
        if self._elems == []:
            print("栈为空")
        return self._elems.pop()

st1 = SStack()
#深度优先搜索
def person_is_seller(name):
    return name[-1] == 'm'

def dfsearch(name):
    st = SStack()
    searched = []
    if graph[name]!=[]:
        for i in graph[name]:
            st.push(i)
    while not st.is_empty():
        person = st.pop()
        if not person in searched:
            if person_is_seller(person):
                print(person + " is a mango seller!")
                return True
        searched.append(person)
        if graph[person]!=[]:
            for j in graph[person]:
                st.push(j)
    return False
dfsearch("you")
#栈实现深度优先遍历
def dfsearch1(name):
    st = SStack()
    searched = []
    print(name)
    if graph[name]!=[]:
        for i in graph[name]:
            st.push(i)
        while not st.is_empty():
            person = st.pop()
            if not person in searched:
                print(person)
            searched.append(person)
            if graph[person]!=[]:
                for j in graph[person]:
                    st.push(j)

dfsearch1("you")

运行结果

thom is a mango seller!
you
claire
jonny
thom
bob
peggy
anuj
alice

狄克斯特拉算法

#狄克斯特拉算法

#表示整个图的散列表
graph = {}
graph["start"] = {}
graph["start"]["a"] = 6
graph["start"]["b"] = 2

graph["a"] = {}
graph["a"]["fin"] = 1

graph["b"] = {}
graph["b"]["a"] = 3
graph["b"]["fin"] = 5

graph["fin"] = {}

#创建开销表
infinity = float('inf')
costs = {}
costs["a"] = 6
costs["b"] = 2
costs["fin"] = infinity
#创建存储父节点的散列表
parents = {}
parents["a"] = "start"
parents["b"] = "start"
parents["fin"] = None

#存储处理过的节点
processed = []

def find_lowest_cost_node(costs):
    lowest_cost = float('inf')
    lowest_cost_node = None
    for node in costs:           #遍历所有节点
        cost = costs[node]
        if cost < lowest_cost and node not in processed:    #如果当前节点的开销更低且位处理过
            lowest_cost = cost                            #就将其视为开销最低的节点
            lowest_cost_node = node
    return lowest_cost_node

node = find_lowest_cost_node(costs)        #在未处理的节点中找出开销最小的节点
while node is not None:
    print(node)
    cost = costs[node]
    neighbors = graph[node]
    for n in neighbors.keys():        #遍历当前节点的所有邻居
        new_cost = cost + neighbors[n]
        if costs[n]>new_cost:         #如果经当前节点千万该邻居更近
            costs[n]=new_cost         #就更新该邻居的开销
            parents[n]=node           #同时将该邻居的父节点设置为当前节点
    processed.append(node)        #将当前节点标记为处理过
    node = find_lowest_cost_node(costs)    #找出接下来要处理的节点,并循环

运行结果

b
a
fin

贪婪算法

#创建一个列表,其中包含要覆盖的州
states_needed = set(["mt", "wa", "or", "id", "nv", "ut", "ca","az"])     #转换成集合
#可供选择地广播台清单
stations = {}
stations["kone"] = set(["id", "nv", "ut"])
stations["ktwo"] = set(["wa", "id", "mt"])
stations["kthree"] = set(["or", "nv", "ca"])
stations["kfour"] = set(["nv", "ut"])
stations["kfive"] = set(["ca", "az"])
#创建一个集合来存储最终选择地广播台
final_stations = set()
while states_needed:
    best_station = None
    states_covered = set()   #包含该广播台覆盖的所有未覆盖的州
    for station, states_for_station in stations.items():
        covered = states_needed & states_for_station  #计算交集
        if len(covered) > len(states_covered):
            best_station = station
            states_covered = covered
    states_needed -= states_covered
    final_stations.add(best_station)

print(final_stations)

运行结果

{'kfive', 'kthree', 'ktwo', 'kone'}
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 214,776评论 6 496
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,527评论 3 389
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 160,361评论 0 350
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,430评论 1 288
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,511评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,544评论 1 293
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,561评论 3 414
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,315评论 0 270
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,763评论 1 307
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,070评论 2 330
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,235评论 1 343
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,911评论 5 338
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,554评论 3 322
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,173评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,424评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,106评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,103评论 2 352

推荐阅读更多精彩内容