Tigase数据库有很多张表,其中最主要的是3张表:tig_users,tig_nodes和tig_pairs。1.tig_userstig_users存储用户信息,有uid(主键,用户ID),user_id(用户名),usr_pw(用户密码)等字段。2.tig_nodestig_nodes是存储节...
分类:
数据库 时间:
2014-08-22 14:25:48
阅读次数:
401
Evaluate Reverse Polish NotationEvaluate the value of an arithmetic expression inReverse Polish Notation.Valid operators are+,-,*,/. Each operand may ...
分类:
其他好文 时间:
2014-08-22 12:18:26
阅读次数:
135
Reverse Words in a StringGiven an input string, reverse the string word by word.For example,Given s = "the sky is blue",return "blue is sky the".Clari...
分类:
其他好文 时间:
2014-08-22 10:30:55
阅读次数:
109
Given a linked list and a value x, partition it such that all nodes less than x come before nodes greater than or equal to x.You should preserve the o...
分类:
其他好文 时间:
2014-08-21 20:58:34
阅读次数:
244
Partition List
Given a linked list and a value x, partition it such that all nodes less than x come before nodes greater than or equal to x.
You should preserve the original relative order of...
分类:
其他好文 时间:
2014-08-21 19:23:34
阅读次数:
295
Reverse IntegerReverse digits of an integer.Example1:x = 123, return 321Example2:x = -123, return -321click to show spoilers.Have you thought about th...
分类:
其他好文 时间:
2014-08-21 19:07:04
阅读次数:
142
要点:AIX文件系统的访问路径AIX文件系统目录树创建AIX文件系统文件系统的卸载和删除文件系统的自动挂载文件系统的容量管理文件系统的一致性管理文件系统的卸载失败文件系统的快照管理LVM常用命令总结AIX存储部署实践存储使用中的例外在UNIX中,每创建一个文件,就会有一个对应的i-nodes,这些连...
分类:
其他好文 时间:
2014-08-20 23:56:43
阅读次数:
285
Given a binary tree, return thepreordertraversal of its nodes' values.For example:Given binary tree{1,#,2,3}, 1 \ 2 / 3return[1,2,3].Not...
分类:
其他好文 时间:
2014-08-20 14:01:43
阅读次数:
202
Given an input string, reverse the string word by word.For example,Given s = "the sky is blue",return "blue is sky the". click to show clarification.C...
分类:
其他好文 时间:
2014-08-20 13:59:42
阅读次数:
229
Given a binary tree, return thepostordertraversal of its nodes' values.For example:Given binary tree{1,#,2,3}, 1 \ 2 / 3return[3,2,1].No...
分类:
其他好文 时间:
2014-08-20 13:58:32
阅读次数:
236