- 博客(5)
- 收藏
- 关注
原创 记录一些jar包操作
记录一些jar包操作BeanUtils jar包作用:将数据库中的User(JavaBean对象)的各个属性数据整合到User对象(JavaBean对象)中例:` User user = new User(); Map<String, String[]> map = request.getParameterMap(); try { BeanUtils.populate(user,map); } catch (I
2021-05-03 17:58:06
110
原创 记录KMP
关于KMP算法public class KMP { public static void main(String[] args) { /*String str = "ababaaab"; // -1 0 0 1 2 3 1 1 init(str); for (int i = 0; i < str.length(); i++) { System.out.print(next[i] + " "); }*/
2021-04-30 11:48:50
92
原创 图的割点
图的割点自己记录的细节,和自身遇到的问题public class 图的割点 { static int n; static int m; static int index; static int[][] a = new int[10][10]; static int[] num = new int[10]; static int[] low = new int[10]; static int[] flag = new int[10]; sta
2021-04-21 11:41:37
108
原创 关于Qt designer的下载细节
关于Qt designer的下载细节第一次发文章,只是为了纪录pip install pyqt5pip install pyqt5-tools中间有遇到Python需要更新的地方需要输入在黑框框里输入:python -m pip install --upgrade pip然后如果下载好了pyqt5-tools,但是没有在D:\Python\Python36\Lib\site-packages\pyqt5_tools或D:\Python\Python36\Scripts中找到可能需要另外下载q
2021-04-12 11:16:03
615
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人