C1-Arrays and String【Cracking the Coding Interview 习题解答】

Cracking the Coding Interview 习题解答 Chapter 1

1.1 Implement an algorithm to determine if a string has all unique characters. What if you can not use additional data structures?

判断字符串是否有重复字符

o(n^2)时间复杂度算法

public boolean hasUnique(String sentence){
        for (int i = 0; i < sentence.length(); i++) {
            for (int j = 0; j < sentence.length(); j++) {
                if(i!=j && sentence.charAt(i)==sentence.charAt(j))
                    return false;
            }
        }
        return true;
}


o(n)时间复杂度,增加一个Set空间为代价

public boolean hasUnique2(String sentence){
        Set<Character> set = new HashSet<Character>();
        for (int i = 0; i < sentence.length(); i++) {
            if(set.contains(sentence.charAt(i)))
                return false;
            set.add(sentence.charAt(i));
        }
        return true;
    }


o(n)时间复杂度,假设字符为ASCII码,进一步减少空间损耗

public boolean hasUnique3(String sentence){
        boolean[] char_set = new boolean[256];
        for (int i = 0; i < sentence.length(); i++) {
            int val = sentence.charAt(i);
            if(char_set[val]) return false;
            char_set[val] = true;
        }
        return true;
}

o(n)时间复杂度,假设字符为'a'~'z',进一步减少空间,使用一个int,32位足够表示26个字母

public boolean hasUnique4(String sentence){
        int checker = 0;
        for (int i = 0; i < sentence.length(); i++) {
            int val = sentence.charAt(i) - 'a';
            if((checker & (1 << val)) > 0) return false;
            checker |= (1 << val);
        }
        return true;
}


1.2 Write code to reverse a C-Style String. (C-String means that “abcd” is represented as five characters, including the null character.)

反转字符串

java版本

public char[] reverse(char[] cs){
        int i=0, j=cs.length-2;
        while(i<j){
            char tmp = cs[j];
            cs[j--] = cs[i];
            cs[i++] = tmp;
        }
        return cs;
}

c++版本

void reverse(char *str) {
	char * end = str;
	char tmp;
	if (str) {
		while (*end) {
			++end;
		}
		--end;
		while (str < end) {
			tmp = *str;
			*str++ = *end;
			*end-- = tmp;
		}
	}
}


1.3 Design an algorithm and write code to remove the duplicate characters in a string without using any additional buffer. NOTE: One or two additional variables are fine. An extra copy of the array is not.
FOLLOW UP
Write the test cases for this method.



1.4 Write a method to decide if two strings are anagrams or not.



1.5 Write a method to replace all spaces in a string with ‘%20’.



1.6 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.7 Write an algorithm such that if an element in an MxN matrix is 0, its entire row and column is set to 0.



1.8 Assume you have a method isSubstring which checks if one word is a substring of another. Given two strings, s1 and s2, write code to check if s2 is a rotation of s1 using only one call to isSubstring (i.e., “waterbottle” is a rotation of “erbottlewat”).




评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值