[Interview ]1. Arrays and Strings

Hash Tables

ArrayList & Resizeable Arrays

amortized insertion running time is O(1)

StringBuilder

The time complexity for using "+" to concatenate a string array is O(x + 2x + 3x + ... + nx) = O(xn^2).

String joinWords(String[] words) {
      String sentence = "";
      for (String w : words) {
            sentence = sentence + w;
      }
      return sentence;
}

StringBuidler helps avoid the problem by using a resizable array of all the strings.

Exercise Method

Impelement your own version of StringBuilder, HashTable and ArrayList.

Additional Reading

  • Hash Table Collision Resolution (pg 636)
  • Rabin-Karp Substring Search (pg636)

Interview Question

1.1 Is Unique

Implement an algorithm to determine if a string has all unique characters. What if you cannot use an additional data structure?
Idea: use a hash set to put all seen chars, check each char with the hash set to see if it has been seen before. -- This uses an additional data structure, a hash set.

Solution

  1. first check if the string is an ASCII string or a Unicode string.
  2. 如果字符串长度超过字母表中所有字母的个数,则一定存在重复字符。
    方法一:
    使用boolean数组表示每个字符是否出现。例如如果字符串是ASCII则可以初始化一个长度为256的字符数组表示每个字符是否出现。-> 时间复杂度O(n), 空间复杂度O(1)

方法二:
使用bit vector表示一个字符是否出现,每一位表示一个字符。

如果不能使用额外的数据结构:

  1. 使用每个字符以此与其他字符进行比较 -> 时间复杂度O(n^2)
  2. 如果可以修改字符串,则可以先排序,再比较相邻字符,时间复杂度O(n * logn)

1.2 Check Permutation

Given two strings, write a method to decide if one is a permutation of the other
**Idea

  1. 如果两个字符串具有完全相同的字母组合则认为这两个字符串互为排列,因此,可以计算每个字符串里面字符出现的个数进行比较,字符串计数的方法通过一个int数组决定
  2. 可以先对两个字符串进行排列,排列后逐个字母进行对比

Solution
需要预先了解大小写空格是否对结果有影响

1.3 URLify

URLify: Write a method to replace all spaces in a string with '%20'. You may assume that the string has sufficient space at the end to hold the additional characters, and that you are given the "true" length of the string. (Note: if implementing in Java, please use a character array so that you can perform this operation in place.)
EXAMPLE
Input: "Mr John Smith ", 13
Output: "Mr%20John%20Smith"

Idea
首先统计字符串中有多少个空格,由此推算将空格替换为%20后字符串有多长。如果原来字符串长度为len,其中有c个空格,那么处理后的字符串长度为len + 2c;因此我们可以得到扩展之后最后一个字符应该出现的位置。
对字符进行urlify的过程将从字符串的结尾向前进行。

1.4 Palindrome Permutation -> todo 实现优化算法的代码

EXAMPLE
Input: Tact Coa
Output: True (permutations: "taco cat'; "atco eta·; etc.)

Idea
对字符串中的数组进行计数,如果最多只有一个字符出现的次数为计数则认为这个字符串可以通过排列得到一个回文字符串。忽略其中的空白字符串

Solution
优化:使用bit vector表示一个字符出现次数的奇偶性

1.5 One Away -> todo 实现代码

There are three types of edits that can be performed on strings: insert a character, remove a character, or replace a character. Given two strings, write a function to check if they are one edit (or zero edits) away.
EXAMPLE
pale, ple -> true
pales, pale -> true
pale, bale -> true
pale, bae -> false

Idea:
因为判断只需要修改以此,那么首先判断两个字符串的长度差别是不是1,如果大于1则肯定不符合条件。
逐个判断两个字符串是否相等,如果不相等,则可以通过以下方式进行修改 => 首先假设字符串为A和B,当前比较的index为 i 和 j

  1. 如果A(i) 不等于 B(j),但是A(i) = B(j+1)则可以通过向A中填充B(j)实现修改,i不变,j=j+1继续比较
  2. 如果A(i+1) = B(j+1),则可以通过修改A(i) = B(j)达到目的
  3. 如果A(i+1) = B(j)则可以删除A(i),那么i = i +1 继续比较

在出现一次edit后将一个flag变量设置为true,如果再次需要修改则返回false

Solution
长度差异决定需要修改的方式!!!

1.6 String Compression -> 实现代码

Implement a method to perform basic string compression using the counts of repeated characters. For example, the string aabcccccaaa would become a2blc5a3. If the "compressed" string would not become smaller than the original string, your method should return the original string. You can assume the string has only uppercase and lowercase letters (a - z).

Idea
注意:如果压缩之后字符串的长度不小于原字符串的长度则放弃压缩。

  1. 首先判断一个压缩后的字符串长度与原字符串长度的大小
  2. 如果需要则压缩字符串,使用一个int数组记录每个字符出现的个数

1.7 Rotate Matrix -> todo 实现代码

Given an image represented by an NxN matrix, where each pixel in the image is 4 bytes, write a method to rotate the image by 90 degrees. Can you do this in place?

1.8 Zero Matrix -> todo 实现代码

Write an algorithm such that if an element in an MxN matrix is 0, its entire row and column are set to 0.

Idea
使用第一行和第一列作为标志位,并使用isColZero和isRowZero两个标志表示第一列和第一行本身是否为0.
首先遍历整个数组,如果一个元素为0,则将它所在的第一行和第一列对应的位置设置为0。
再次遍历数组,根据第一行和第一列的标志信息将对应的行和列设置为0

1.9 String Rotation

Assume you have a method isSubstring which checks if one word is a substring of another. Given two strings, 51 and 52, write code to check if 52 is a rotation of 51 using only one call to isSubstring (e.g., "waterbottle" is a rotation of" erbottlewat").

解法厉害!

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 215,384评论 6 497
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,845评论 3 391
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 161,148评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,640评论 1 290
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,731评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,712评论 1 294
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,703评论 3 415
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,473评论 0 270
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,915评论 1 307
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,227评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,384评论 1 345
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,063评论 5 340
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,706评论 3 324
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,302评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,531评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,321评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,248评论 2 352