当前位置:网站首页>Written interview topic: looking for the lost pig
Written interview topic: looking for the lost pig
2020-11-08 10:30:00 【Oc ccy4urvn】
Original published in :
Today's National Day , The Mid Autumn Festival, too , It's really rare . stay 21 Century's 100 During the year , have only 4 Year is like this . At home today , With family , Cook and eat , Do housework , Read some idle books , By the way, write something , I'll go out later , And then come back and run .
The campus autumn recruitment has begun in succession , I wish the students in school get their favorite offer, I also wish the students who are recruited by the society to change jobs smoothly .
today , Let's see A An interview question for the company :
Yes n Pigs , Take the car to the vegetable market , The pigs were pasted with 1~n The number of , All of a sudden , A pig jumped out of the car and ran away , Ask for the number of the pig that escaped .
The pig is still very poor , Slip away , We also need to track down the numbers . below , Let's look at algorithms .
Algorithm 1: Making difference method
Ideas :
Step1: To calculate the 1~n And a.
Step2: Find the sum of the numbers of the remaining pigs b.
Step3: a-b That's the number of the pig .
The disadvantage of this algorithm is : seek 1~n And , It might spill over .
Algorithm 2: Tagging
Ideas : Open up an array m, use m[i]=0 or 1 To record i Whether there is , For lost pigs j, There must be m[j]=0.
The disadvantage of this algorithm is : The space complexity is O(n)
Algorithm 3: Sequencing
Ideas : Sort the rest of the pigs , The pig that is running away j At the number of , There must be a break , So they know j The specific value of .
The disadvantage of this algorithm is : Let's take the example of fast track , Neither time complexity nor space complexity is optimal .
Algorithm 4: Exclusive or law ( The best algorithm )
Ideas :
Step1: To calculate the 1~n Exclusive or values a.
Step2: Find the exclusive or value of the number of the remaining pigs b.
Step3: seek a and b Exclusive or values , It's the number of the pig that escaped j.
The principle is as follows :
hypothesis n=5, The number of the lost pig is 3, So the number of the remaining pigs is 2, 4, 1, 5, Let's calculate :
j = 1^2^3^4^5^2^4^1^5
obviously , According to the exchange law of XOR , The above operations can be simplified , as follows :
j = 1^1^2^2^4^4^5^5^3 = 3
This gives you the number of the pig that's gone . here , The time complexity is O(n), The space complexity is O(1), This is the best algorithm . As for the procedure , It's simple , So I won't go back to .
In the previous post , We can actually see , XOR is a special kind of “ Addition and subtraction ”, therefore , Algorithm 1 Sum algorithm 4 It's a wonderful thing to do the same . About binary XORs , You can refer to :
The circuit principle of computer addition and proteus Simulation
版权声明
本文为[Oc ccy4urvn]所创,转载请带上原文链接,感谢
边栏推荐
- laravel8更新之速率限制改进
- 搜索引擎的日常挑战_4_外部异构资源 - 知乎
- It's 20% faster than python. Are you excited?
- 解决Safari浏览器下载文件文件名称乱码的问题
- An error occurred while starting the kernel was successfully resolved
- C language I blog assignment 03
- 游戏优化性能杂谈(十一) - 知乎
- Mate 40 series launch with Huawei sports health service to bring healthy digital life
- Japan PSE certification
- 计算机网络基本概念(五)局域网基本原理
猜你喜欢
Deeplight Technology Bluetooth protocol SRRC certification services
Seven features of Python 3.9
临近双11,恶补了两个月成功拿下大厂offer,跳槽到阿里巴巴
PCIe enumeration process
Flink's sink: a preliminary study
TCP协议如何确保可靠传输
An error occurred while starting the kernel was successfully resolved
Improvement of rate limit for laravel8 update
洞察——风格注意力网络(SANet)在任意风格迁移中的应用
技术人员该如何接手一个复杂的系统?
随机推荐
SQL Server 2008R2 18456错误解决方案
PX4添加新的应用
Is there a big difference between i5 1135g7 and i51035g1? Which is better?
It's 20% faster than python. Are you excited?
Mozi college SQL injection solution
个人目前技术栈
Is software testing training class easy to find a job
Japan PSE certification
Istio流量管理--Ingress Gateway
NOIP 2012 提高组 复赛 第一天 第二题 国王游戏 game 数学推导 AC代码(高精度 低精度 乘 除 比较)+60代码(long long)+20分代码(全排列+深搜dfs)
ASP.NET MVC下基于异常处理的完整解决方案
渤海银行百万级罚单不断:李伏安却称治理完善,增速呈下滑趋势
抖音直播监控Api:随机推荐
How did Julia become popular?
ArrayList源码分析
More than 50 object detection datasets from different industries
Face recognition: attack types and anti spoofing techniques
成功解决An error ocurred while starting the kernel
第二次作业
技术人员该如何接手一个复杂的系统?