当前位置:   article > 正文

令人惊艳的六大算法(哈希表、分治算法、动态规划算法、贪心算法、回溯算法、图论算法)

算法

当谈到计算机科学时,算法是一个重要的话题,因为它们能帮助解决很多问题。有些算法尤其令人惊艳,因为它们不仅高效,而且有着惊人的表现。在这篇文章中,我将分享一些我认为令人惊艳的高效算法。

一、哈希表

哈希表是一种使用哈希函数实现的数据结构,它能够提供常量级的插入、删除和查找操作。哈希表的查找速度非常快,这主要是因为它能够快速计算出需要查找的元素在表中的位置,从而省去了大量的比较操作。

哈希表的实际应用非常广泛。例如,在编写Web应用程序时,哈希表通常用于缓存数据,从而避免在数据库中频繁地读取数据。另外,在面试时,哈希表也是经常被考察的知识点之一。

以下是一个使用Python实现的哈希表的例子:

  1. class HashTable:
  2. def __init__(self):
  3. self.size = 11
  4. self.slots = [None] * self.size
  5. self.data = [None] * self.size
  6. def put(self,key,data):
  7. hashvalue = self.hashfunction(key,len(self.slots))
  8. if self.slots[hashvalue] == None:
  9. self.slots[hashvalue] = key
  10. self.data[hashvalue] = data
  11. else:
  12. if self.slots[hashvalue] == key:
  13. self.data[hashvalue] = data # replace
  14. else:
  15. nextslot = self.rehash(hashvalue,len(self.slots))
  16. while self.slots[nextslot] != None and \
  17. self.slots[nextslot] != key:
  18. nextslot = self.rehash(nextslot,len(self.slots))
  19. if self.slots[nextslot] == None:
  20. self.slots[nextslot]=key
  21. self.data[nextslot]=data
  22. else:
  23. self.data[nextslot] = data #replace
  24. def hashfunction(self,key,size):
  25. return key%size
  26. def rehash(self,oldhash,size):
  27. return (oldhash+1)%size
  28. def get(self,key):
  29. startslot = self.hashfunction(key,len(self.slots))
  30. data = None
  31. stop = False
  32. found = False
  33. position = startslot
  34. while self.slots[position] != None and \
  35. not found and not stop:
  36. if self.slots[position] == key:
  37. found = True
  38. data = self.data[position]
  39. else:
  40. position=self.rehash(position,len(self.slots))
  41. if position == startslot:
  42. stop = True
  43. return data
  44. def __getitem__(self,key):
  45. return self.get(key)
  46. def __setitem__(self,key,data):
  47. self.put(key,data)

二、分治算法

分治算法依靠分解问题为更小的子问题来求解复杂问题。它的核心思想就是将问题不断分解,直至问题被分解为足够小的子问题,这些子问题容易被解决和合并,从而得到原问题的解。

分治算法非常重要,因为它可以用于解决许多在计算机科学中常见的问题,例如排序、搜索、矩阵乘法、数值计算等。例如,在排序算法中,快速排序就是一个应用了分治算法的高效排序算法。

以下是一个使用Python实现的快速排序算法的例子:

  1. def quickSort(arr):
  2. if len(arr) <= 1:
  3. return arr
  4. pivot = arr[len(arr) // 2]
  5. left = [x for x in arr if x < pivot]
  6. middle = [x for x in arr if x == pivot]
  7. right = [x for x in arr if x > pivot]
  8. return quickSort(left) + middle + quickSort(right)

三、动态规划算法

动态规划算法是一种通过将问题分解为子问题来求解复杂问题的算法。动态规划算法通常用于最优化问题,它将一个问题分解为多个子问题,逐步解决每个子问题并将结果合并,最终得到问题的最优解。

动态规划算法的应用非常广泛,例如在图像处理、自然语言处理、机器学习等领域都能看到它的应用。在面试中,动态规划算法也是一个经常被考察的知识点。

以下是一个动态规划算法的例子:

  1. def fibonacci(n):
  2. if n == 0:
  3. return 0
  4. elif n == 1:
  5. return 1
  6. else:
  7. return fibonacci(n-1) + fibonacci(n-2)

然而,上述算法时间复杂度较高,如果要计算较大的斐波那契数列,它的效率会非常低。下面给出一种更高效的动态规划算法实现:

  1. def fibonacci(n):
  2. if n == 0:
  3. return 0
  4. elif n == 1:
  5. return 1
  6. else:
  7. array = [0] * (n+1)
  8. array[0] = 0
  9. array[1] = 1
  10. for i in range(2, n+1):
  11. array[i] = array[i-1] + array[i-2]
  12. return array[n]

这个算法的时间复杂度为O(n),比前面的递归算法要高效得多。

四、贪心算法

贪心算法是一种在每个阶段选择当前最优解的策略,以期望最终得到全局最优解的算法。贪心算法通常用于组合优化问题,例如在图论、计算几何、网络设计等领域。

以下是一个使用贪心算法的例子,求解背包问题:

  1. def fractional_knapsack(value, weight, capacity):
  2. """Return maximum value of items and their fractional amounts.
  3. (max_value, fractions) is returned where max_value is the maximum value of
  4. items with total weight not more than capacity.
  5. fractions is a list where fractions[i] is the fraction that should be taken
  6. of item i, where 0 <= i < total number of items.
  7. value[i] is the value of item i and weight[i] is the weight of item i
  8. for 0 <= i < n where n is the number of items.
  9. capacity is the maximum weight.
  10. """
  11. index = list(range(len(value)))
  12. # contains ratios of values to weight
  13. ratio = [v/w for v, w in zip(value, weight)]
  14. # index is sorted according to value-to-weight ratio in decreasing order
  15. index.sort(key=lambda i: ratio[i], reverse=True)
  16. max_value = 0
  17. fractions = [0]*len(value)
  18. for i in index:
  19. if weight[i] <= capacity:
  20. fractions[i] = 1
  21. max_value += value[i]
  22. capacity -= weight[i]
  23. else:
  24. fractions[i] = capacity/weight[i]
  25. max_value += value[i]*capacity/weight[i]
  26. break
  27. return max_value, fractions

五、回溯算法

回溯算法是一种递归算法,它尝试在所有可能的路径上搜索解决方案。回溯算法通常用于组合优化问题,例如在图论、计算几何、网络设计等领域。

以下是一个使用回溯算法的例子,求解八皇后问题:

  1. def is_valid(board, row, col, n):
  2. # Check row on left side
  3. for i in range(col):
  4. if board[row][i] == 1:
  5. return False
  6. # Check upper diagonal on left side
  7. for i, j in zip(range(row, -1, -1), range(col, -1, -1)):
  8. if board[i][j] == 1:
  9. return False
  10. # Check lower diagonal on left side
  11. for i, j in zip(range(row, n, 1), range(col, -1, -1)):
  12. if board[i][j] == 1:
  13. return False
  14. return True
  15. def solve_n_queens(board, col, n, solutions):
  16. if col == n:
  17. # Add solution to list of solutions
  18. solutions.append([row[:] for row in board])
  19. return
  20. for i in range(n):
  21. if is_valid(board, i, col, n):
  22. board[i][col] = 1
  23. solve_n_queens(board, col+1, n, solutions)
  24. board[i][col] = 0
  25. def n_queens(n):
  26. board = [[0 for x in range(n)] for y in range(n)]
  27. solutions = []
  28. solve_n_queens(board, 0, n, solutions)
  29. return solutions

 

六、图论算法

图论算法是一种研究图的性质和特征的数学分支,也是计算机科学中的一个重要领域。图论算法通常用于网络设计、路由算法、图像处理等领域。

以下是一个使用图论算法的例子,求解最短路径问题:

  1. import heapq
  2. def dijkstra(graph, start):
  3. """Return shortest path distances from start to all other vertices."""
  4. distances = {vertex: float('inf') for vertex in graph}
  5. distances[start] = 0
  6. pq = [(0, start)]
  7. while pq:
  8. current_distance, current_vertex = heapq.heappop(pq)
  9. # Ignore if we have already found a shorter path
  10. if current_distance > distances[current_vertex]:
  11. continue
  12. for neighbor, weight in graph[current_vertex].items():
  13. distance = current_distance + weight
  14. if distance < distances[neighbor]:
  15. distances[neighbor] = distance
  16. heapq.heappush(pq, (distance, neighbor))
  17. return distances

以上是六种常用的算法及其应用,当然还有很多其他的算法,例如KMP算法、哈希算法、蒙特卡罗算法等等。掌握这些算法并能够熟练应用它们,对于程序员来说是非常重要的。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/weixin_40725706/article/detail/496423
推荐阅读
相关标签
  

闽ICP备14008679号