In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-09-17 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >
Share
Shulou(Shulou.com)06/03 Report--
This article shows you how to answer the speed linked list and speed pointer of the interview questions. the content is concise and easy to understand, which can definitely brighten your eyes. I hope you can get something through the detailed introduction of this article.
How to quickly find the middle node of a single linked list of location length? The common way is to traverse first and find the intermediate node of the 2/length from scratch. The algorithm complexity is O (3*n/2). A faster way is to use the principle of fast and slow pointers.
Fast and slow linked list: using the idea of a ruler, set two pointers (one fast and one slow) * serach and * mid, both of which point to the head node of the single linked list at first. But the * search pointer moves twice as fast as the * mid. When * search reaches the tail node, mid is right in the middle. The complexity of the algorithm is O (nbank 2).
Int GetMidNode (LinkList * L elem) {LinkList * search,*mid; mid = search = L; / / points to the header node while (search- > nextint null) {/ / when there is a next node, if (search- > next- > nextint null) {/ / check whether the next node is empty search = search- > next- > next; mid = mid- > next;} else search = search- > next;} elem = mid- > data Return elem;} the above content is the speed list of the interview questions and how to answer the speed pointer. Have you learned the knowledge or skills? If you want to learn more skills or enrich your knowledge reserve, you are welcome to follow the industry information channel.
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
The market share of Chrome browser on the desktop has exceeded 70%, and users are complaining about
The world's first 2nm mobile chip: Samsung Exynos 2600 is ready for mass production.According to a r
A US federal judge has ruled that Google can keep its Chrome browser, but it will be prohibited from
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
About us Contact us Product review car news thenatureplanet
More Form oMedia: AutoTimes. Bestcoffee. SL News. Jarebook. Coffee Hunters. Sundaily. Modezone. NNB. Coffee. Game News. FrontStreet. GGAMEN
© 2024 shulou.com SLNews company. All rights reserved.