C指针编程之道 ---第五次笔记

//数据结构中指针的应用

//内存中的堆栈和数据结构中的堆栈室友区别的

//在数据结构中,常常把堆栈放在一起表示的一种数据结构,

//但是在内存中堆是存储动态的内存,栈是存放静态的以及调用的函数。

//在数据结构中涉及了堆栈,队列,链表等在这里主要实现的是队列。

//循环队列的指针应用

#include <iostream>

#include <cstdio>

#define QueueSize_UarLen 8

using namespace std;

typedef struct

{

int front;

int rear;

int counter;

int uart_data[QueueSize_UartLen];

}CIRQUEUE_UART;

//队列的初始化

void InitQueue(CIRQUEUE_UART *queue)

{

queue->front = 0;

queue->rear = 0;

queue->counter = 0;

}

//入队

int InQueue(CIRQUEUE_UART *queue, int data)

{

if(QueueFull(queue))

{

//输出队列满了

return 0;

}

else

{

queue->uart_data[queue->rear] = data;

queue->counter++;

queue->rear = (queue->rear + 1) % QueueSize_UartLen;

//这里的上一句相当于

//if(queue-<rear + 1 == QueueSize_UartLen)

//{

// queue_rear = 0;

//}

//else

//{

// queue->rear ++;

//}

return 1;

}

}

//出队

int OutQueue(CIRQUEUE_UART *queue, int *p_data)

{

if(QueueEmpty(queue))

{

//输出队空提示

//return 0;

}else

{

*p_data = queue->data(font);

queue->counter--;

queue->front = (queue->front + 1) % QueueSize_UartLen;

return 1;

}

}

//判断队列是否为空

int QueueEmpty(QueueSize_UartLen *queue)

{

return queue->counter == 0;

}

//判断是否是满的

int QueueFull(QueueSize_UartLen *queue)

{

return queue->counter == QueueSize_UartLen;

}

int main()

{

/**

*

* /

}

//C世界的树

//这里写的是二叉树的三种遍历方式

#include <stdio.h>

#include <malloc.h>

typedef struct tree_node

{

char data;

struct tree_node *lchild, *rchild;

}BT_Node;

#define Tree_NodeLen sizeof(BT_Node)

BT_Node *tree;

BT_Node *Creat_BTree(BT_Node *t);

void visit_Node(BT_Node *tree);

void Pre_Order(BT_Node *tree);

void Mid_Order(BT_Node *tree);

void After_Order(BT_Node *tree);

int main()

{

printf("\n请输入输的节点\n");

tree = Creat_BTree(Tree);

if(tree)

{

printf("\n前序遍历\n");

Pre_Order(tree);

printf("\n");

printf("\n中序遍历\n");

Mid_Oder(tree);

printf("\n");

printf("\n中序遍历\n");

After_Order(tree);

printf("\n");

}

printf("\n");

return 0;

}

BT_Node *Create_BTree(BT_Node *tree)

{

char ch;

ch = getchar();

if(ch == ‘*‘)

{

tree = null;

}

else

{

tree = (BT_Node *)malloc(Tree_NodeLen);

tree->data = ch;

tree->lchild = Create_BTree(tree->lchild);

tree->rchild = Create_BTree(tree->rchild);

}

return(tree);

}

void Visited_Node(BT_Node *tree)

{

printf(" ");

putchar(tree->data);

printf("\t");

}

void Pre_Order(BT_Node *tree)

{

if(! tree)

{

return;

}

else

{

Visit_Node(tree);

Pre_Order(tree->lchild);

Pre_Order(tree->rchild);

}

}

void Mid_Order(BT_Node *tree)

{

if(!tree)

{

return;

}

else

{

Mid_Order(tree->lchild);

Visit_Node(tree);

Mid_Order(tree->rchild);

}

}

void After_Order(BT_Node *tree)

{

if(! tree)

{

return;

}

else

{

After_Order(tree->lchild);

After_Order(tree->rchild);

Visited_Node(tree);

}

}

时间: 2024-10-17 00:35:11

C指针编程之道 ---第五次笔记的相关文章

C指针编程之道 ---第八次笔记

这次是算法中最常用的快速排序,常备成为快排,这里是头尾两个指针的算法. //快速排序 #include <iostream> #include <cstdio> using namespace std; int partition(int *Array, int i, int j) { int t = *(Array + 1); while(i < j) { while(i < j && *(Array + j) >= t) { j--; } if

C指针编程之道 ---第四次笔记

//多为数组的指针学习 //定义二位数组 //int date[4][5]; //说明这个数组的所有成员都是int类型 //int date[4][5] = { // {1, 2, 3, 4, 5}, // {1, 2, 3, 4, 5}, // {1, 2, 3, 4, 5}, // {1, 2, 3, 4, 5} //}; //或者int date[4][5] = {1,2,3,4,5,1,2,3,4,5,1,2,3,4,5,1,2,3,4,5}; //例子访问二位数组 #include <

C指针编程之道 ---第三次笔记

这次整理的是函数指针和指针函数 这是指针的调用: 代码: #include <iostream> #include <cstdio> using namespace std; typedef unsigned char unit8_t; extern void swapdata(unit8_t dat_x, unit8_t dat_y); int main() { unit8_t x, y; scanf("%d %d", &x, &y); pri

C指针编程之道 ---第十一次笔记

这次来说交换函数的实现: 1. #include <stdio.h> #include <stdlib.h> void swap(int x, int y) { int temp; temp = x; x = y; y = temp; } int main() { int a = 10, b = 20; printf("交换前:\n a = %d, b = %d\n", a, b); swap(a, b); printf("交换后:\n a = %d,

C指针编程之道 ---第六次笔记

//指向文件类型的指针 //在C语言的文件你的读写一般使用系统的库函数来对数据进行读写 //文件的类型的指针 //文件的结构 #include <iostream> #include <cstdio> using namespace std; typedef struct { short level; //缓冲区满或者是空的程度 unsigned flags; //文件状态标志 char fd; //文件描述符 unsigned hold; //如无缓冲区不读取字符 short b

C指针编程之道 ---第七次笔记

//指针在C语言算法中的应用 //首先说的是排序 //排序基本上分为5种 //插入排序, 选择排序, 交换排序, 归并排序, 分配排序 //先说7上8下的冒泡排序 #include <iostream> #include <cstdio> using namespace std; void BubbleSort(int *Array, int n) { int a; for(int i = n; i > 0; --i) { for(int j = 0; j < i; +

C指针编程之道 ---第一次笔记

//==================C指针编程之道===========================// /////////////第一次笔记//////////////// * 表示该变量为指针变量,这也是指针变量的特性. int *pStu; //定义指针变量pStu, 并且pStu指向int类型变量 static int *pStu; //定义指针变量pStu, 并且pStu指向静态整形变量 char *pStu;   //pStu是一个指针变量 取地址符& 和 取值运算符 * 通

C指针编程之道 ---第九次笔记

//这里说的是指针在算法中的应用 //直接选择排序 //每个排序的算法都是指针的方便性的特点来指向每个元素进行交换等 //这里的基本思想是对待排序的记录进行n - 1次选择. //第i次操作选择i大(小)的记录放在第i个(或者n - i - 1 个)位置上. //即每次都将一个记录放在它最终的位置上, //这就是所谓的"各回各家" #include <iostream> #include <cstdio> using namespace std; void Se

C指针编程之道 ---第十次笔记

//指针在搜索算法中实例 //迷宫算法 //搜索最长用到的就是深度优先搜索和广度优先搜索 //深度优先搜索就像名字一样,对每一个道路一直搜索到底, //为了防止思路,特别的设置了栈这种数据结构 //使得每次找到思路的时候还可以退出到出发点. // // //广度优先搜索 //广度优先搜索就是利用队列性质先进先出的性质,把每次的搜索结果放入队列, //排除思路等条件 // //回溯法 //就是枚举每个可能的判断,如果可以就执行,不可以就返回开始的地方 //八皇后的实现:回溯法 #include <