Algorithm
Quote from COMP90038_2021_SM1: Algorithms and Complexity courseware, by Dr. Michael Kirley
ClosestPair
二维空间里n个点,找到一对距离最短的点

def ClosestPair(nodes):min = float("inf") //positive infinityn = len(nodes)for i in range(0, n - 1):xi, yi = nodes[i]for j in range(i + 1, n):xj, yj = nodes[j]d = ((xi - xj) ** 2 + (yi - yj) ** 2) ** 0.5if d < min:min = dpi = ipj = jreturn pi, pjdef test():N = [(1, 3), (5, 8), (-2, 7), (-9, 0), (-4, -6)]print(ClosestPair(N))
StringMatching
很像KMP字符串匹配
def StringMatching(pattern, text):m = len(pattern)n = len(text)for i in range(0, n - m + 1):j = 0while j < m and pattern[j] == text[i + j]:j = j + 1if j == m:return ireturn -1def test():print(StringMatching("hello", "abchellodef"))
Review
Starting a Codebase on Github
How to push Code to Github
Understanding the Github Flow
tells basic process, like opening a pull request, deploy, merge on GitHub projects
Tip
Analyse & Capture The Packets in Wireshark
Type Conversions in Java

cast 投,抛;计算
E.g., short x; int y = 50; x = (short) y;
E.g., double average = (double) sum / count;
Java Scanner Class
Share
Java Class VS JavaScript Prototype
Fundamental Algorithms’ Visualization
involves the basic idea of algorithms

