上一页 1 ··· 24 25 26 27 28 29 30 31 32 ··· 64 下一页
摘要: 概述: 索引(Index)是帮助MySQL高效获取数据的数据结构。 索引是以表列为基础的数据库对象,它保存着表中排序的索引列,并且记录了索引列在数据表中的物理存储位置,实现了表中数据的逻辑排序, 其主要目的是提高数据库系统的性能,加快数据的查询速度和减少系统的响应时间。 在MySQL中,索引是在存储 阅读全文
posted @ 2018-01-17 20:28 __Meng 阅读(289) 评论(0) 推荐(0) 编辑
摘要: Given a 32-bit signed integer, reverse digits of an integer. Example 1: Example 2: Example 3: Note:Assume we are dealing with an environment which cou 阅读全文
posted @ 2018-01-17 10:33 __Meng 阅读(110) 评论(0) 推荐(0) 编辑
摘要: 直接插入排序: 将一个记录插入到已排序好的有序表中,从而得到一个新,记录数增1的有序表。即:先将序列的第1个记录看成是一个有序的子序列,然后从第2个记录逐个进行插入,直至整个序列有序为止。 时间复杂度:O(n^2) 稳定的 希尔排序: 先将要排序的一组记录按某个增量d(n/2,n为要排序数的个数)分 阅读全文
posted @ 2018-01-16 20:19 __Meng 阅读(260) 评论(0) 推荐(0) 编辑
摘要: Implement the following operations of a stack using queues. push(x) -- Push element x onto stack. pop() -- Removes the element on top of the stack. to 阅读全文
posted @ 2018-01-16 09:51 __Meng 阅读(135) 评论(0) 推荐(0) 编辑
摘要: Given a linked list, determine if it has a cycle in it. Follow up:Can you solve it without using extra space? 判断一个链表是否有环 C++(10ms): 阅读全文
posted @ 2018-01-15 11:14 __Meng 阅读(134) 评论(0) 推荐(0) 编辑
摘要: We are playing the Guess Game. The game is as follows: I pick a number from 1 to n. You have to guess which number I picked. Every time you guess wron 阅读全文
posted @ 2018-01-13 13:14 __Meng 阅读(135) 评论(0) 推荐(0) 编辑
摘要: Given an integer, write an algorithm to convert it to hexadecimal. For negative integer, two’s complement method is used. Note: Example 1: Example 2: 阅读全文
posted @ 2018-01-12 11:14 __Meng 阅读(139) 评论(0) 推荐(0) 编辑
摘要: mv命令用来对文件或目录重新命名,或者将文件从一个目录移到另一个目录中。source表示源文件或目录,target表示目标文件或目录。如果将一个文件移到一个已经存在的目标文件中,则目标文件的内容将被覆盖。 mv命令可以用来将源文件移至一个目标文件中,或将一组文件移至一个目标目录中。源文件被移至目标文 阅读全文
posted @ 2018-01-10 17:15 __Meng 阅读(3411) 评论(0) 推荐(0) 编辑
摘要: rm命令可以删除一个目录中的一个或多个文件或目录,也可以将某个目录及其下属的所有文件及其子目录均删除掉。对于链接文件,只是删除整个链接文件,而原有文件保持不变。 阅读全文
posted @ 2018-01-10 16:10 __Meng 阅读(199) 评论(0) 推荐(0) 编辑
摘要: Given two lists Aand B, and B is an anagram of A. B is an anagram of A means B is made by randomizing the order of the elements in A. We want to find 阅读全文
posted @ 2018-01-10 15:35 __Meng 阅读(148) 评论(0) 推荐(0) 编辑
上一页 1 ··· 24 25 26 27 28 29 30 31 32 ··· 64 下一页