12 2017 档案

tes-项目创建修改步骤
摘要:后端:: 一、创建项目table NameClass.java: 右键添加get,set封装 set中改成三目运算符用于去空格: 二、创建NameClassForm.java用于扩展NameClass.java: 在这里扩展页码和关键字参数,用get、set封装 三、创建NameClassMappe 阅读全文

posted @ 2017-12-13 10:16 任性的大萝卜 阅读(392) 评论(0) 推荐(0)

LeetCode记录-easy-009Palindrome Number
摘要:Determine whether an integer is a palindrome. Do this without extra space. click to show spoilers. Some hints: Could negative integers be palindromes? 阅读全文

posted @ 2017-12-11 15:15 任性的大萝卜 阅读(83) 评论(0) 推荐(0)

LeetCode记录-easy-007Reverse Integer
摘要:Given a 32-bit signed integer, reverse digits of an integer. Example 1: Example 2: Example 3: 思路:先把数字求绝对值x,然后x%10取最后一位,然后ans = ans*10 + x%10,加上最后一位。然后 阅读全文

posted @ 2017-12-06 13:23 任性的大萝卜 阅读(91) 评论(0) 推荐(0)

数据库导入时报2006或相应错误的解决方法
摘要:产生此错误的原因:导入的数据库字段或表长度超过了默认数据库导入长度! 输入在数据库命令窗口输入以下内容可以解决: 手动将长度进行扩展 阅读全文

posted @ 2017-12-06 11:28 任性的大萝卜 阅读(167) 评论(0) 推荐(0)

LeetCode记录-easy-001 Two Sum
摘要:Given an array of integers, return indices of the two numbers such that they add up to a specific target. You may assume that each input would have ex 阅读全文

posted @ 2017-12-04 13:02 任性的大萝卜 阅读(85) 评论(0) 推荐(0)

导航