摘要: Maven Getting Started Guide Download and Installation instructions. Sections What is Maven? How can Maven benefit my development process? How do I set 阅读全文
posted @ 2020-06-05 22:53 PrimerPlus 阅读(147) 评论(0) 推荐(0) 编辑
摘要: In this tutorial, we use the MySQL Connector/J driver. It is the official JDBC driver for MySQL. The examples were created and tested on Ubuntu Linux. 阅读全文
posted @ 2020-06-05 12:22 PrimerPlus 阅读(636) 评论(0) 推荐(0) 编辑
摘要: 排序算法之冒泡排序 目录 冒泡排序介绍 O(n^2)的实现方法 优化思路 1. 冒泡排序介绍 冒泡排序是一种比较简单的排序方法,以数组升序的情况为例,它的原理是从第一个元素开始,每个元素都与其相邻的元素做比较,如果前一个元素比后一个元素大,则交换两个元素的位置,每一轮排序都确定一个最大值。它是一种稳 阅读全文
posted @ 2020-06-05 00:49 PrimerPlus 阅读(145) 评论(0) 推荐(0) 编辑