链家笔试题整理

1.撤销操作如何实现?

撤销功能的实现备忘录模式

2.1000万个数找出两数之和为K的数

用HashMap实现,key为 具体的数字,value为数字出现的次数

3.一个含有n个元素的数组,找出m个数使其和为K

public class Test {
    public static void main(String[] args) {
         int[] nums ={ 1, 2, 3, 4, 5, 6 };
         int sum=10;
         Test test = new Test();
         test.findNums(nums,sum);
    }

    public void findNums(int[] nums,int sum){
        int length = nums.length;
        int count = 1<< length;
        for(int i=1;i<count;i++){
            int temp =i;
            int index = length-1;
            int temp_sum=0;
            while (temp>0) {
                if ((temp & 1) == 1) {
                    temp_sum += nums[index];
                }
                temp=temp>>1;
                index--;
            }
            if(temp_sum==sum){
                printNums(nums,i);
                System.out.println();
            }
        }
    }

    public void printNums(int[] nums,int i){
        int index = nums.length-1;
        while (i>0){
            if((i&1)==1){
                System.out.print(nums[index]+"  ");
            }
            i=i>>1;
            index--;
        }
    }
}

4.二叉树中两个节点的最近公共祖先

 public int query(BinaryTreeNode node1, BinaryTreeNode node2, BinaryTreeNode root) {
        int left = node1.value;
        int right = node2.value;
        BinaryTreeNode parent = null;

        if (left > right) {
            int temp = left;
            left = right;
            right = temp;
        }

        while (true) {
            if (root.value < left) {
                parent = root;
                root = root.right;
            } else if (root.value > right) {
                parent = root;
                root = root.left;
            } else if (root.value == left || root.value == right) {
                return parent.value;
            } else {
                return root.value;
            }
        }
    }

5.IP 与城市的映射

HashMap实现

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值