zoukankan      html  css  js  c++  java
  • 去除A和B数组中的交集

    那位同学碰到新的算法题了。

    去除A和B数组中的交集 ,即去除A和B数组中重复次数少的部分如A:111B:11,即去除B中的11

    下面是我的解决方案,另希望他最后面试能过: 

        class Program
        {
            
    static void Main(string[] args)
            {
                
    int[] ar = { 126345 };
                
    int[] ar2 = { 100,1003261009347 };
                
    try
                {
                    Console.WriteLine(get2rdMax(ar).ToString());
                    Console.WriteLine(get2rdMax(ar2).ToString());
                }
                
    catch(Exception exc)
                {
                    Console.WriteLine(exc.Message);
                }
            }

            
    private static int get2rdMax(int[] ar)
            {
                
    if (ar.Length < 2)
                    
    throw new Exception("no second max!");

                
    int max=ar[0], s_max=ar[0];

                
    for (int i = 1; i < ar.Length; i++)
                {
                    
    int index = ar[i];

                    
    if (index == max)
                        
    continue;//重复值问题

                    
    if (s_max == ar[0&& max == ar[0])
                    {
                        s_max 
    = index;
                    }
                    
                    
    if (index > s_max)
                    {
                        s_max 
    = index;
                    }

                    
    if (s_max > max)
                    {
                        max 
    += s_max;
                        s_max 
    = max - s_max;
                        max 
    -= s_max;
                    }
                    
                }

                
    if (max == s_max)
                    
    throw new Exception("no second max!");
                
    else
                    
    return s_max;
            }
            

        } 

    作者:KKcat
        
    个人博客:http://jinzhao.me/
        
    本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。
  • 相关阅读:
    synchronized (lock) 买票demo 线程安全
    springboot项目搭建
    Maven命令
    Mybatis的mapper文件中$和#的用法及区别详解
    mybatis映射文件mapper.xml的写法(collections...)
    MyBatis-动态SQL的if、choose、when、otherwise、trim、where、set、foreach使用(各种标签详解), 以及实体间关系配置
    024 搭建前台系统-----乐优商城工程启动步骤教程
    023 商品管理功能03-----商品修改
    023 商品管理功能02-----商品新增
    022 商品管理功能01-----商品查询
  • 原文地址:https://www.cnblogs.com/jinzhao/p/2001407.html
Copyright © 2011-2022 走看看