摘要: 数据结构 - 栈 import java.util.Stack; public class StackExample { public static void main(String[] args) { Stack stack = new Stack<>(); // 入栈操作 stack.push( 阅读全文
posted @ 2025-01-27 20:48 吉尼泰梅 阅读(7) 评论(0) 推荐(0)
摘要: 数据结构 - 队列 import java.util.LinkedList; import java.util.Queue; public class QueueExample { public static void main(String[] args) { Queue queue = new 阅读全文
posted @ 2025-01-27 20:48 吉尼泰梅 阅读(12) 评论(0) 推荐(0)
摘要: 搜索算法 - 二分搜索 public class BinarySearch { public static int binarySearch(int[] arr, int target) { int left = 0; int right = arr.length - 1; while (left 阅读全文
posted @ 2025-01-27 20:47 吉尼泰梅 阅读(7) 评论(0) 推荐(0)
摘要: 排序算法 - 冒泡排序 public class BubbleSort { public static void bubbleSort(int[] arr) { int n = arr.length; for (int i = 0; i < n - 1; i++) { for (int j = 0; 阅读全文
posted @ 2025-01-27 20:47 吉尼泰梅 阅读(7) 评论(0) 推荐(0)
摘要: 《人月神话》是软件工程领域的一部经典之作,其作者布鲁克斯以丰富的实践经验和深刻的洞察力,为软件项目管理提供了宝贵的指导。阅读此书,我深感其思想的前瞻性和实用性,对于软件开发过程中的诸多问题有了更为清晰的认识。 书中最为震撼我的观点是“向进度落后的项目中增加人手,只会使进度更加落后”。这一结论颠覆了很 阅读全文
posted @ 2025-01-27 20:10 吉尼泰梅 阅读(22) 评论(0) 推荐(0)