企业面试
ly923976094
数据之路,吾将上下而求索
展开
-
剑指offer(一)
1、在一个二维数组中,每一行都按照从左到右递增的顺序排序,每一列都按照从上到下递增的顺序排序。请完成一个函数,输入这样的一个二维数组和一个整数,判断数组中是否含有该整数。 public class Solution { public boolean Find(int [][] array,int target) { for(int i=0; i原创 2016-10-11 16:09:06 · 377 阅读 · 0 评论 -
剑指offer(二)
1、大家都知道斐波那契数列,现在要求输入一个整数n,请你输出斐波那契数列的第n项。n 1 2 3 4 5 6 7 8 9 10 11 12 13 public class Solution { public int Fibonacci(int原创 2016-10-11 16:14:26 · 272 阅读 · 0 评论 -
美团笔试之编程题
有一个长为n的数组A,求满足0≤a≤b 给定数组A及它的大小n,请返回最大差值。 class LongestDistance { public: int getDis(vector A, int n) { // write code here int max_dis = 0; int min_num = A.at(0); int dis;原创 2016-10-05 13:47:13 · 1190 阅读 · 0 评论