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/
        
    本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。
  • 相关阅读:
    [AT2064] [agc005_f] Many Easy Problems
    [AT2304] [agc010_c] Cleaning
    [AT2172] [agc007_e] Shik and Travel
    [AT2148] [arc063_c] Integers on a Tree
    [AT2363] [agc012_c] Tautonym Puzzle
    未能从程序集“netstandard, Version=2.0.0.0......”中加载类型“...”。
    Android Studio设置国内镜像代理
    新建一个浏览器APP
    Android Studio在Make Project时下载Grandle特别慢
    用JS添加和删除class类名
  • 原文地址:https://www.cnblogs.com/jinzhao/p/2001407.html
Copyright © 2011-2022 走看看