摘要: 冒泡排序 void bubbleSort(vector<int> &nums) { for (int i = 0; i < nums.size() - 1; ++i) { for (int j = 0; j < nums.size() - 1 - i; ++j) { if (nums[j] > nu 阅读全文
posted @ 2022-03-11 10:34 RQWANG 阅读(63) 评论(0) 推荐(0)
摘要: 可以使用javafx库** javafx库 画图表时怎么设置格式(如点的大小)? 通过css文件定义格式,然后程序读取css中的格式 首先创建css文件 bifurcation.css,放置再src下 #bifurcation-diagram .chart-symbol { -fx-backgrou 阅读全文
posted @ 2021-03-27 15:18 RQWANG 阅读(300) 评论(0) 推荐(0)
摘要: 基础知识 float和double的不同 1. Memory : float takes 4 bytes (32 bits) where as double takes 8 bytes(64 bits). **2. Suffix 😗* By default, float numbers are d 阅读全文
posted @ 2021-03-27 15:12 RQWANG 阅读(34) 评论(0) 推荐(0)
摘要: 怎么编写能使用泛型当作参数的函数? 可以使用this来给参数赋默认值 public class Rectangle { private int x, y; private int width, height; public Rectangle() { this(0, 0, 1, 1); // 默认值 阅读全文
posted @ 2021-03-27 15:11 RQWANG 阅读(52) 评论(0) 推荐(0)
摘要: HashMap 继承关系 遍历 // initialize a HashMap HashMap<String, Integer> map = new HashMap<>(); // Iterate the map using // for-each loop for (Map.Entry<Strin 阅读全文
posted @ 2021-03-27 15:08 RQWANG 阅读(51) 评论(0) 推荐(0)