数据结构第七章-顺序查找(顺序存储结构+链式存储结构)

1.顺序存储结构

cs 复制代码
#include <stdio.h>  
#include <stdlib.h>  
  
#define MAXSIZE 100  
#define OK 1  
  
typedef struct {  
    int key; // 关键字域  
} ElemType;  
  
typedef struct {  
    ElemType *R;  
    int length;  
} SSTable;  
  
int InitList_SSTable(SSTable *L) {  
    L->R = (ElemType *)malloc(MAXSIZE * sizeof(ElemType));  
    if (!L->R) {  
        printf("初始化错误\n");  
        return 0;  
    }  
    L->length = 0;  
    return OK;  
}  
  
int Insert_SSTable(SSTable *L) {  
    int j = 0;  
    for (int i = 0; i < MAXSIZE; i++) {  
        L->R[i].key = j;  
        L->length++;  
        j++;  
    }  
    return 1;  
}  
  
int Search_Seq(SSTable ST, int key) {  
    // 在顺序表ST中顺序查找其关键字等于key的数据元素。若找到,则函数值为  
    // 该元素在表中的位置,否则为0  
    for (int i = ST.length - 1; i >= 0; --i) {  
        if (ST.R[i].key == key) return i + 1; // C语言中数组从0开始,但通常位置从1开始计数,这里返回i+1  
    }  
    return 0;  
}  
  
void Show_End(int result, int testkey) {  
    if (result == 0)  
        printf("未找到%d\n", testkey);  
    else  
        printf("找到%d位置为%d\n", testkey, result);  
}  
  
int main() {  
    SSTable ST;  
    InitList_SSTable(&ST);  
    Insert_SSTable(&ST);  
    int testkey1 = 7, testkey2 = 200;  
    int result;  
    result = Search_Seq(ST, testkey1);  
    Show_End(result, testkey1);  
    result = Search_Seq(ST, testkey2);  
    Show_End(result, testkey2);  
      
    // 释放动态分配的内存  
    free(ST.R);  
      
    return 0;  
}

2.链式存储结构

cs 复制代码
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
typedef struct Node
{
	int data;
	struct Node* next;
}Node;
Node* Create(int data)
{
	Node* newnode = (Node*)malloc(sizeof(Node));
	if (newnode == NULL)
	{
		return;
	}
	newnode->data = data;
	newnode->next = NULL;
	return newnode;
}
//尾插
void appendNode(Node** headRef, int data)
{
	Node* newnode = Create(data);
	if (*headRef == NULL)
	{
		*headRef = newnode;
		return;
	}
	Node* temp = *headRef;
	while (temp->next != NULL)
	{
		temp = temp->next;
	}
	temp->next = newnode;
}
//顺序查找
Node* Find_Node(Node* head, int key)
{
	Node* current = head;
	while (current)
	{
		if (current->data == key)
		{
			return current;
		}
		current = current->next;
	}
	return NULL;
}
void printNode(Node* head)
{
	Node* temp = head;
	while (temp)
	{
		printf("%d ", temp->data);
		temp = temp->next;
	}
}
void Free_Node(Node* head)
{
	Node* temp = head;
	while (temp)
	{
		Node* pcur = temp->next;
		free(temp);
		temp = pcur;
	}
}
int main()
{
	Node* temp = NULL;
	appendNode(&temp, 10);
	appendNode(&temp, 20);
	appendNode(&temp, 30);
	appendNode(&temp, 40);

	printf("链表内容如下:\n");
	printNode(temp);
	printf("\n");
	int key = 30;
	Node* result = Find_Node(temp, key);
	if (result != NULL)
	{
		printf("链表中存在key的值为%d", key);
	}
	else {
		printf("链表中不存在key的值为%d", key);
	}
	Free_Node(temp);
	return 0;
}
相关推荐
Jackey_Song_Odd几秒前
C语言 单向链表反转问题
c语言·数据结构·算法·链表
Watermelo6174 分钟前
详解js柯里化原理及用法,探究柯里化在Redux Selector 的场景模拟、构建复杂的数据流管道、优化深度嵌套函数中的精妙应用
开发语言·前端·javascript·算法·数据挖掘·数据分析·ecmascript
乐之者v9 分钟前
leetCode43.字符串相乘
java·数据结构·算法
A懿轩A1 小时前
C/C++ 数据结构与算法【数组】 数组详细解析【日常学习,考研必备】带图+详细代码
c语言·数据结构·c++·学习·考研·算法·数组
古希腊掌管学习的神1 小时前
[搜广推]王树森推荐系统——矩阵补充&最近邻查找
python·算法·机器学习·矩阵
云边有个稻草人1 小时前
【优选算法】—复写零(双指针算法)
笔记·算法·双指针算法
半盏茶香1 小时前
在21世纪的我用C语言探寻世界本质 ——编译和链接(编译环境和运行环境)
c语言·开发语言·c++·算法
忘梓.2 小时前
解锁动态规划的奥秘:从零到精通的创新思维解析(3)
算法·动态规划
️南城丶北离2 小时前
[数据结构]图——C++描述
数据结构··最小生成树·最短路径·aov网络·aoe网络
✿ ༺ ོIT技术༻2 小时前
C++11:新特性&右值引用&移动语义
linux·数据结构·c++