Given two strings s and t, determine if they are isomorphic.Two strings are isomorphic if the characters in s can be replaced to get t.All occurrences of a character must be replaced with another chara...
分类:
其他好文 时间:
2015-04-29 15:10:38
阅读次数:
85
Isomorphic Strings
Given two strings s and t, determine if they are isomorphic.
Two strings are isomorphic if the characters in s can be replaced to get t.
All occurrences of a character mu...
分类:
其他好文 时间:
2015-04-29 13:36:44
阅读次数:
193
Given two stringssandt, determine if they are isomorphic.Two strings are isomorphic if the characters inscan be replaced to gett.All occurrences of a ...
分类:
其他好文 时间:
2015-04-29 13:26:07
阅读次数:
118
Given two stringssandt, determine if they are isomorphic.Two strings are isomorphic if the characters inscan be replaced to gett.All occurrences of a ...
分类:
其他好文 时间:
2015-04-29 11:33:16
阅读次数:
99
#service httpd start#Starting httpd: httpd: Could not reliably determine the server's fully qualified domain name, using 192.168.1.123 for ServerName解...
分类:
Web程序 时间:
2015-04-29 09:46:02
阅读次数:
122
题目:
Determine whether an integer is a palindrome. Do this without extra space.
Some hints:
Could negative integers be palindromes? (ie, -1)
If you are thinking of converting the integer to s...
分类:
其他好文 时间:
2015-04-28 22:53:01
阅读次数:
177
1、Given a linked list, determine if it has a cycle in it.2、Given a linked list, return the node where the cycle begins. If there is no cycle, return n...
分类:
其他好文 时间:
2015-04-28 22:24:58
阅读次数:
176
MIT 操作系统实验 MIT JOS lab5
Lab 5: File system, Spawn and Shell
Disk Access
The x86 processor uses the IOPL bits in the EFLAGS register to determine whether protectedmode code is...
分类:
其他好文 时间:
2015-04-28 21:03:12
阅读次数:
310
Write an algorithm to determine if a number is “happy”.A happy number is a number defined by the following process: Starting with any positive integer, replace the number by the sum of the squares of i...
分类:
移动开发 时间:
2015-04-28 16:19:46
阅读次数:
156
判断cycle存在Given a linked list, determine if it has a cycle in it.Follow up: Can you solve it without using extra space?本题要求判断给定链表中是否存在循环。并且题目要求不要使用extra space,因此,我们就不能保存每一个结点的value,在遍历的时候判断是否是循环。这道题可以通过...
分类:
其他好文 时间:
2015-04-28 16:16:20
阅读次数:
98