Title
摘要: Mybatis框架学习笔记一 #####基础mybatis注解配置 1.编写jdbcConfig.properties配置文件 jdbc.driver=com.mysql.jdbc.Driver jdbc.url=jdbc:mysql://localhost:3306/数据库名 jdbc.usern 阅读全文
posted @ 2020-04-13 21:12 唔芜舞雾 阅读(700) 评论(0) 推荐(0) 编辑
摘要: #####题目链接: http://acm.hdu.edu.cn/showproblem.php?pid=1686 #####题目描述: 给出两个串,分别为str1,str2,问str1在str2中出现了几次。 解题思路: 解决字符串匹配问题首选KMP。通过样例可以看出允许重复,直接运用next数组 阅读全文
posted @ 2020-04-13 18:29 唔芜舞雾 阅读(175) 评论(0) 推荐(0) 编辑