在MySQL中,数据库和表其实就是数据目录下的目录和文。因而,操作系统的敏感性决定数据库和表命名的大小写敏感。这就意味着数据库和表名在Windows中是大小写不敏感的,而在大多数类型的Unix/Linux
系统中是大小写敏感的。MySQL大小写敏感可以通过配置文件的lower_case_table_na..
分类:
数据库 时间:
2015-07-23 15:54:05
阅读次数:
164
解决windows下MySQL表名大写自动变小写的问题有些人可能会遇到在windows下,表名不能用大写字母,即使使用了大写字母的建表语句,还是会被自动转成小写。解决方法:打开 MySQL 的配置文件 my.ini ,在 [mysqld] 节下加入Xml代码 lower_case_table_nam...
分类:
数据库 时间:
2015-07-16 11:21:21
阅读次数:
207
Length of Last Word
Given a string s consists of upper/lower-case alphabets and empty space characters ' ', return the length of last word in the string.
If the last word does not exist, return...
分类:
其他好文 时间:
2015-07-15 15:08:18
阅读次数:
97
题目:
Given an array of strings, return all groups of strings that are anagrams.
Note: All inputs will be in lower-case.
题意:
给定一个字符串数组,返回所有的易位构词组合。
注意:所有的输入都是小写。
算法分析:
易位构词其实也很好理解,就是两个单...
分类:
编程语言 时间:
2015-07-14 22:41:56
阅读次数:
149
problem:Given an array of strings, return all groups of strings that are anagrams.Note: All inputs will be in lower-case.思路解析:使用hashmap来存储已排好序的字符串。注意i...
分类:
其他好文 时间:
2015-07-14 16:58:05
阅读次数:
114
Given an array of strings, return all groups of strings that are anagrams.
Note: All inputs will be in lower-case.
这道题是题目都没读懂,不知道Anagrams什么意思。Anagrams的意思是那些字符串的组成字符相同。比如说abc,那么abc这三个字符的所有排列都是Anagr...
分类:
其他好文 时间:
2015-07-14 10:08:44
阅读次数:
109
Anagrams
Given an array of strings, return all groups of strings that are anagrams.
Note: All inputs will be in lower-case.
思路:这题要是解,必须知道什么是回文构词法。所谓回文构词法就是把一个单词的顺序调整,形成新的单词,如”eat“,"tea"就是回...
分类:
其他好文 时间:
2015-07-13 14:04:39
阅读次数:
119
Given a stringsconsists of upper/lower-case alphabets and empty space characters' ', return the length of last word in the string.If the last word doe...
分类:
其他好文 时间:
2015-07-13 11:36:56
阅读次数:
92
Given an array of strings, return all groups of strings that are anagrams.Note: All inputs will be in lower-case.public class Solution { public Lis...
分类:
其他好文 时间:
2015-07-12 15:26:42
阅读次数:
116
Length of Last Word
Given a string s consists of upper/lower-case alphabets and empty space characters '
', return the length of last word in the string.
If the last word does not exist...
分类:
其他好文 时间:
2015-07-11 09:13:11
阅读次数:
106