首页 > 后端开发 > C++ > 正文

使用C++在链表中搜索元素

WBOY
发布: 2023-09-10 15:01:02
转载
850 人浏览过

使用C++在链表中搜索元素

要在链表中搜索元素,我们必须迭代整个链表,将每个节点与所需数据进行比较,并继续搜索直到获得匹配。因为链表不提供随机访问,所以我们必须从第一个节点开始搜索。

我们得到一个整数链表和一个整数键。我们需要查找这个键是否存在于我们的链表中。我们可以在链表中做一个简单的线性搜索,找到key。如果存在,我们可以返回“Yes”;否则,“否”

让我们看看一些输入输出场景 -

我们已经获取了一个列表,我们需要在该列表中查找该元素是否存在于该列表中,并使用提供的键为 3 获取相应的输出 -

Input Data: [ 10, 4, 5, 4, 10, 1, 3, 5]
Output: Yes
登录后复制

让我们考虑另一个场景,密钥为 5 -

Input Data: [ 1, 4, 9, 4, 10, 1, 3, 6]
Output: No
登录后复制

算法(步骤)

以下是执行所需任务所需遵循的算法/步骤 -

  • 将头部设置为空。

  • 向链接列表添加一些项目

  • 获取用户输入的要搜索的项目。

  • 从头到尾线性遍历链表,直到到达空节点。

  • 检查每个节点,看看数据值是否与要搜索的项目匹配。

  • 返回找到数据的节点的索引。如果没有找到,则转到下一个节点。

示例

例如,我们有一个链表,如“52->4651->42->5->12587->874->8->null”,其键为 12587。实现该示例的 C++ 程序下面给出 -

#include <iostream>
using namespace std;
class Node {
   public:
   int val;
   Node* next;
   Node(int val) {
      this->val = val;
      next = NULL;
   }
};
void solve(Node* head, int key) {
   while(head) {
      if(head->val == key) {
         cout << "Yes";
         return;
      }
      head = head->next;
   }
   cout << "No";
}
int main() {
   Node* head = new Node(52);
   head->next = new Node(4651);
   head->next->next = new Node(42);
   head->next->next->next = new Node(5);
   head->next->next->next->next = new Node(12587);
   head->next->next->next->next->next = new Node(874);
   head->next->next->next->next->next->next = new Node(8);
   solve(head, 12587);
   return 0;
}
登录后复制

输出

Yes
登录后复制
登录后复制

示例

现在我们将使用递归方法来解决同样的问题 -

#include <iostream>
using namespace std;
class Node {
   public:
   int val;
   Node* next;
   Node(int val) {
      this->val = val;
      next = NULL;
   }
};
void solve(Node* head, int key) {
   if(head == NULL) {
      cout << "No";
   } else if(head->val == key) {
      cout << "Yes";
   } else {
      solve(head->next, key);
   }
}
int main() {
   Node* head = new Node(52);
   head->next = new Node(4651);
   head->next->next = new Node(42);
   head->next->next->next = new Node(5);
   head->next->next->next->next = new Node(12587);
   head->next->next->next->next->next = new Node(874);
   head->next->next->next->next->next->next = new Node(8);
   solve(head, 12587);
   return 0;
}
登录后复制

输出

Yes
登录后复制
登录后复制

结论

时间复杂度为O(n)。我们使用迭代方法来解决这个问题。用递归方法尝试这个问题。

以上是使用C++在链表中搜索元素的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:tutorialspoint.com
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
最新问题
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责声明 Sitemap
PHP中文网:公益在线PHP培训,帮助PHP学习者快速成长!