面试10大算法题汇总-字符串和数组8

17.最长连续序列

给定一个无序数组,求最长连续序列的长度。要求负责度为O(n)

例:数组num:[100, 4, 200,1, 3, 2]的最长连续序列为[1,2,3,4],长度为4

解法一:建立一个bool数组,用于表示该数字是否存在,之后求数组中连续为true的最长值即可。在[100, 4, 200, 1, 3, 2]中,其最小值为1,最大值为200,因此建立长度为iMax-iMin+1(200-1+1) = 200的数组bExist,之后对数组赋值,其中bExist[100 - 1] ,bExist[4 – 1],bExist[200 – 1],bExist[1 – 1],bExist[3 – 1],bExist[2 – 1]设为true,最后发现数组中最长一段连续为true的值是bExit[0]~bExist[3],长度4。

Code:

public class test {
	public static int longestConsecutive(int[] num) {
		int maxLength = 0;
		int iMin = Integer.MAX_VALUE, iMax = Integer.MIN_VALUE;
		for (int i : num) {
			if (iMin > i)
				iMin = i;
			if (iMax < i)
				iMax = i;
		}
		int iRange = iMax - iMin + 1;
		boolean[] bExist = new boolean[iRange];
		for (int i : num) {
			bExist[i - iMin] = true;
		}
		int i = 0, j = 0;
		while (i < iRange) {
			if (bExist[i] == true)
				++j;
			else {
				maxLength = Math.max(maxLength, j);
				j = 0;
			}
			++i;
		}
		maxLength = Math.max(maxLength, j);
		return maxLength;
	}

	public static void main(String[] args) {
		int[] a = { 100, 4, 200, 1, 3, 2 };
		System.out.println(longestConsecutive(a));
	}
}

解法一适用于num[]中数字区间较小的情况。若num中iMin = -999999,iMax = +999999,则会对浪费大量空间。

解法二:

用哈希表。将数组中所有数字存入表中,对每个数字,查看其连续值(-1/+1)是否也在表中。

Code:

import java.util.HashSet;
import java.util.Set;

public class test {
	public static int longestConsecutive(int[] num) {
		if (num.length == 0) {
			return 0;
		}

		Set<Integer> set = new HashSet<Integer>();
		int max = 1;

		for (int e : num)
			set.add(e);

		for (int e : num) {
			int left = e - 1;
			int right = e + 1;
			int count = 1;

			while (set.contains(left)) {
				count++;
				set.remove(left);
				left--;
			}

			while (set.contains(right)) {
				count++;
				set.remove(right);
				right++;
			}

			max = Math.max(count, max);
		}

		return max;
	}

	public static void main(String[] args) {
		int[] a = { 2147483646, -2147483647, 0, 2, 2147483644, -2147483645,
				2147483645 };
		System.out.println(longestConsecutive(a));
	}
}

18.螺旋矩阵

给定一个m*n的矩阵,从外围按顺时针螺旋打印。

例:

[

[ 1,2, 3 ],

[ 4,5, 6 ],

[ 7,8, 9 ]

]

输出:

[1,2,3,6,9,8,7,4,5].

Code:

import java.util.ArrayList;

public class test {
	public static ArrayList<Integer> spiralOrder(int[][] matrix) {
		ArrayList<Integer> result = new ArrayList<Integer>();

		if (matrix == null || matrix.length == 0)
			return result;

		int m = matrix.length;
		int n = matrix[0].length;

		int x = 0;
		int y = 0;

		while (m > 0 && n > 0) {

			// if one row/column left, no circle can be formed
			if (m == 1) {
				for (int i = 0; i < n; i++) {
					result.add(matrix[x][y++]);
				}
				break;
			} else if (n == 1) {
				for (int i = 0; i < m; i++) {
					result.add(matrix[x++][y]);
				}
				break;
			}

			// below, process a circle

			// top - move right
			for (int i = 0; i < n - 1; i++) {
				result.add(matrix[x][y++]);
			}

			// right - move down
			for (int i = 0; i < m - 1; i++) {
				result.add(matrix[x++][y]);
			}

			// bottom - move left
			for (int i = 0; i < n - 1; i++) {
				result.add(matrix[x][y--]);
			}

			// left - move up
			for (int i = 0; i < m - 1; i++) {
				result.add(matrix[x--][y]);
			}

			x++;
			y++;
			m = m - 2;
			n = n - 2;
		}

		return result;
	}

	public static void main(String[] args) {
		ArrayList<Integer> lResult = new ArrayList<Integer>();
		int[][] matrix = { { 1, 2, 3 }, { 4, 5, 6 }, { 7, 8, 9 } };
		lResult = spiralOrder(matrix);
		for (Integer i : lResult)
			System.out.print(i + " ");
	}
}

时间: 2024-11-04 21:32:25

面试10大算法题汇总-字符串和数组8的相关文章

面试10大算法题汇总-字符串和数组6

11.String转int,即atoi函数实现. 主要考虑以下几种情况: 1.      String为空 2.      String中存在非数字字符,如空白字符,abcd等 3.      String的正负 Code: public class test { public static int atoi(String str) { if (str == null || str.length() < 1) return 0; str = str.trim(); char flag = '+'

面试10大算法题汇总-字符串和数组7

14.实现strStr():搜索一个字符串在另一个字符串中的第一次出现的位置 例: #include <stdio.h> #include <string.h> int main () { char str[] ="This is a simple string"; char * pch; pch = strstr (str,"simple"); cout<<(*pch)<<endl; return 0; } 输出:s

面试10大算法题汇总-字符串和数组1

题目链接: http://blog.csdn.net/xiaoranlr/article/details/43963933 1. 计算逆波兰式 题目要求如下: ["2","1", "+", "3", "*"] -> ((2 + 1) * 3)-> 9 ["4","13", "5", "/", "+"

面试10大算法题汇总-字符串和数组5

7.合并重复区间 给定一组区间,合并其中重复的.例: 给定[1,3],[0,7],[2,6],[8,10],[15,18],其中[1,3]与[0,7]及[2,6]区间有重复,因此将其合并成一个区间:[0,7].最终返回: [0,7],[8,10],[15,18]. 书上的解法用到了Comparator,其大致思路如下: 1.      创建一个间隔类Interval,其成员变量为start和end,分别表示间隔区间的开始和结束. 2.      创建一个Solution类,其包含merge方法,

面试10大算法题汇总-字符串和数组2

3.分词 给定一个字符串s和一个单词字典,确定s是否可被字典分解为多个单词 如: 给定s="leetcode" dict=["leet","code"] 由于"leetcode"可被分割为"leet code",返回True 最简单的一种方法是遍历dict中的单词,查看其是否在s的起始位置,若在则继续查看s剩下部分,否则返回false import java.util.HashSet; import jav

面试10大算法题汇总-字符串和数组9

20.寻找2D矩阵 给定一个从左到右从上到下递增的m*n矩阵,判断target是否在矩阵中 例: [ [1,  3,  5, 7], [10, 11, 16, 20], [23, 30, 34, 50] ] Target=3 返回:true 思路:二分查找 Code: public class test { public static boolean searchMatrix(int[][] matrix, int target) { if (matrix == null || matrix.l

面试10大算法题汇总-字符串和数组3

6.匹配正则表达式 编写函数boolisMatch(String s, String p),完成正则表达式中"."和"*"的功能.例: isMatch("aa","a")return false isMatch("aa","aa")return true isMatch("aaa","aa")return false isMatch("a

编程面试的10大算法概念汇总

以下是在编程面试中排名前10的算法相关的概念,我会通过一些简单的例子来阐述这些概念.由于完全掌握这些概念需要更多的努力,因此这份列表只是作为一个介绍.本文将从Java的角度看问题,包含下面的这些概念: 1. 字符串2. 链表3. 树4. 图5. 排序6. 递归 vs. 迭代7. 动态规划8. 位操作9. 概率问题10. 排列组合 1. 字符串 如果IDE没有代码自动补全功能,所以你应该记住下面的这些方法. toCharArray() // 获得字符串对应的char数组 Arrays.sort()

面试10大算法汇总

英文版 以下从Java角度解释面试常见的算法和数据结构:字符串,链表,树,图,排序,递归 vs. 迭代,动态规划,位操作,概率问题,排列组合,以及一些需要寻找规律的题目. 1. 字符串和数组 字符串和数组是最常见的面试题目类型,应当分配最大的时间.关于字符串,首先需要注意的是和C++不同,Java字符串不是char数组.没有IDE代码自动补全功能,应该记住下面的这些常用的方法. toCharArray() //获得字符串对应的char数组 Arrays.sort() //数组排序 Arrays.