2024西工大数据结构理论上机作业(头歌 C)持续更新中~

第二章 线性表

1 顺序表的插入运算

#include <stdio.h>
#include <stdlib.h>typedef struct node {int val;struct node *next;
} Node, List;List *init(void) {List *s = (List*) malloc(sizeof(List));Node *tail = s; int n;s->next = NULL, s->val = -1;scanf("%d", &n);for (int i = 0; i < n; ++i) {Node *node = (Node*) malloc(sizeof(Node));scanf("%d", &node->val);node->next = NULL, tail->next = node, tail = node;}return s;
}void insert(List *s) {Node *node = (Node*) malloc(sizeof(Node)), *curr = s;scanf("%d", &node->val);while (curr->next) {if (node->val > curr->next->val) curr = curr->next;else break;}node->next = curr->next, curr->next = node;
}void traverse(List *s) {for (Node *curr = s->next; curr; curr = curr->next)printf("%d ", curr->val);printf("\n");
}int main () {List *s = init();insert(s);traverse(s);return 0;
}

2 线性表的就地逆置

#include <stdio.h>
#include <stdlib.h>int arr[1005] = {};typedef struct node {int val;struct node *next;
} Node, List;List *init(int n) {List *s = (List*) malloc(sizeof(List));Node *tail = s;s->next = NULL, s->val = -1;for (int i = 0; i < n; ++i) {Node *node = (Node*) malloc(sizeof(Node));scanf("%d", &arr[i]);node->val = arr[i], node->next = NULL;tail->next = node, tail = node;}return s;
}void reverse(List *s, int n) {// 三指针迭代Node *prev = NULL, *curr = s->next;while (curr) {Node *next = curr->next;curr->next = prev;prev = curr, curr = next;}s->next = prev;int begin = 0, end = n - 1;while (begin < end) {int tmp = arr[begin];arr[begin] = arr[end], arr[end] = tmp;++begin, --end;}
}void traverse(List *s, int n) {// 会尾判空格for (Node *curr = s->next; curr; curr = curr->next) {if (!curr->next) printf("%d", curr->val);else printf("%d ", curr->val);}printf("\n");for (int i = 0; i < n; ++i) {if (i == n - 1) printf("%d", arr[i]);else printf("%d ", arr[i]);}printf("\n");
}int main () {int n;scanf("%d", &n);List *s = init(n);reverse(s, n);traverse(s, n);return 0;
}

3 顺序表的删除

#include <stdio.h>
#include <stdlib.h>int n, m1, m2;
int arr1[1005] = {};
int arr2[1005] = {};typedef struct node {int val;struct node *next;
} Node, List;List *init(void) {scanf("%d %d %d", &n, &m1, &m2);List *s = (List*) malloc(sizeof(List));Node *tail = s;s->next = NULL, s->val = -1;for (int i = 0; i < n; ++i) {Node *node = (Node*) malloc(sizeof(Node));scanf("%d", &node->val);node->next = NULL, tail->next = node, tail = node;}for (int i = 0; i < m1; ++i)scanf("%d", &arr1[i]);for (int i = 0; i < m2; ++i)scanf("%d", &arr2[i]);return s;
}void delete(List *s) {// 三指针遍历int h1 = 0, h2 = 0;Node *curr = s->next;while (h1 < m1 && h2 < m2) {if (arr1[h1] < arr2[h2]) ++h1;else if (arr1[h1] > arr2[h2]) ++h2;else {int val = arr1[h1];while (curr->next) {if (curr->next->val == val) {Node* tmp = curr->next;curr->next = tmp->next;free(tmp);} else if (curr->next->val < val)curr = curr->next;else break;}++h1, ++h2;}}
}void traverse(List *s) {for (Node *curr = s->next; curr; curr = curr->next)printf("%d ", curr->val);printf("\n");
}int main () {List *s = init();delete(s);traverse(s);return 0;
}

4 单链表的归并

#include <stdio.h>
#include <stdlib.h>typedef struct node {int val;struct node *next;
} Node, List;List *init(int n) {List *s = (List*) malloc(sizeof(List));Node *tail = s;s->next = NULL, s->val = -1;for (int i = 0; i < n; ++i) {Node *node = (Node*) malloc(sizeof(Node));scanf("%d", &node->val);node->next = NULL, tail->next = node, tail = node;}return s;
}List* merge(List* src1, List* src2) {if (!src1->next) return src2;if (!src2->next) return src1;List* dest = (List*) malloc(sizeof(List));dest->next = NULL, dest->val = -1;Node *curr1 = src1->next, *curr2 = src2->next, *head = dest, *tmp = NULL;// 头插逆序, 尾插正序, 以下采用头插法while (curr1 && curr2) {if (curr1->val < curr2->val) {tmp = curr1->next, curr1->next = head->next;head->next = curr1, curr1 = tmp;} else {tmp = curr2->next, curr2->next = head->next;head->next = curr2, curr2 = tmp;}}while (curr1) {tmp = curr1->next, curr1->next = head->next;head->next = curr1, curr1 = tmp;}while (curr2) {tmp = curr2->next, curr2->next = head->next;head->next = curr2, curr2 = tmp;}src1->next = NULL, src2->next = NULL;return dest;
}void traverse(List *s) {for (Node *curr = s->next; curr; curr = curr->next)printf("%d ", curr->val);printf("\n");
}int main () {int n, m;scanf("%d %d", &n, &m);List *s1 = init(n);List *s2 = init(m);List *s = merge(s1, s2);traverse(s);return 0;
}

5 单链表的删除

#include <stdio.h>
#include <stdlib.h>typedef struct node {int val;struct node *next;
} Node, List;List *init(int n) {List *s = (List*) malloc(sizeof(List));Node *tail = s;s->next = NULL, s->val = -1;for (int i = 0; i < n; ++i) {Node *node = (Node*) malloc(sizeof(Node));scanf("%d", &node->val);node->next = NULL, tail->next = node, tail = node;}return s;
}void delete(List *s, List *s1, List *s2) {// 三指针遍历Node *h = s->next, *h1 = s1->next, *h2 = s2->next;while (h1->next && h2->next) {if (h1->val < h2->val) h1 = h1->next;else if (h1->val > h2->val) h2 = h2->next;else {int val = h1->val;while (h->next) {if (h->next->val == val) {Node* tmp = h->next;h->next = tmp->next;free(tmp);} else if (h->next->val < val)h = h->next;else break;}h1 = h1->next, h2 = h2->next;}}
}void traverse(List *s) {for (Node *curr = s->next; curr; curr = curr->next)printf("%d ", curr->val);printf("\n");
}int main () {int n, m1, m2;scanf("%d %d %d", &n, &m1, &m2);List *s = init(n);List *s1 = init(m1);List *s2 = init(m2);delete(s, s1, s2);traverse(s);return 0;
}

6 LOCATE 操作

#include <stdio.h>
#include <stdlib.h>typedef struct node {char ch;struct node *next, *prev;int freq;
} Node, List;List *init(int n) {List *s = (List*) malloc(sizeof(List));Node *head = s; int tmp = 1;s->next = s, s->prev = s, s->ch = ' ', s->freq = 0;while (tmp <= n) {char ch = getchar();if (ch != ' ' && ch != '\n') {Node *node = (Node*) malloc(sizeof(Node));node->ch = ch, node->freq = 0;node->prev = head->prev, node->next = head;head->prev->next = node, head->prev = node;++tmp;}}return s;
}void update(List *s, int m) {int tmp = 1;while(tmp <= m) {char ch = getchar();if (ch != ' ' && ch != '\n') {for (Node *curr = s->next; curr != s; curr = curr->next)if (ch == curr->ch) {++curr->freq; break;}++tmp;}}
}// 插入排序(稳定)
void sort(List *s) {Node *curr = s->next->next;while (curr != s) {Node *tail = curr->prev, *tmp = curr->next;while (tail != s && curr->freq > tail->freq) tail = tail->prev;curr->prev->next = curr->next, curr->next->prev = curr->prev;curr->prev = tail, curr->next = tail->next;tail->next->prev = curr, tail->next = curr;curr = tmp;}
}void traverse(List *s) {for (Node *curr = s->next; curr != s; curr = curr->next)printf("%c ", curr->ch);printf("\n");
}int main () {int n, m;scanf("%d %d", &n, &m);List *s = init(n);update(s, m);sort(s);traverse(s);return 0;
}

第三章 栈与队列

7 表达式括号匹配

#include <stdio.h>
#include <stdbool.h>char stack[1005] = {};
int top = -1;bool isMatched(void) {while(1) {char ch = getchar();switch (ch) {case ' ': case '\n': {if (top == -1) return true;return false;}case '(': {stack[++top] = '(';break;}case '[': {stack[++top] = '[';break;}case '{': {stack[++top] = '{';break;}case ')': {if (stack[top--] != '(')return false;break;}case ']': {if (stack[top--] != '[')return false;break;}case '}': {if (stack[top--] != '[')return false;break;}default: break;}}
}int main () {if (isMatched()) printf("yes\n");else printf("no\n");return 0;
}

8 逆波兰表达式

#include <stdio.h>
#include <stdbool.h>
#include <string.h>
#include <ctype.h>char calc[1005] = "";char stack[1005] = {};
int top = -1;bool isPrior(char curr, char topCh) {return (((curr != '+') && (curr != '-')) ||((topCh != '*') && (topCh != '/'))) && (curr != ')');
}int main() {scanf("%s", calc);size_t len = strlen(calc);for (int i = 0; i < len; ++i) {if (isalpha(calc[i])) printf("%c", calc[i]);else {if (top == -1 || isPrior(calc[i], stack[top]))stack[++top] = calc[i];else {if (calc[i] == ')') {while (stack[top] != '(')printf("%c", stack[top--]);--top;} elsewhile(top != -1)printf("%c", stack[top--]);}}}while (top != -1) printf("%c", stack[top--]);return 0;
}

9 循环队列

#include <stdio.h>int queue[1005] = {};
int rear = 0, len;int main() {scanf("%d", &len);while(1) {scanf("%d", &queue[rear++]);char ch = getchar();if (ch == '\n' || rear >= len) break;}int val, front = 0;scanf("%d", &val);while (front < len && queue[front] != val) ++front;++front;for (int i = front; i < rear; ++i)printf("%d ", queue[i]);printf("\n");printf("%d\n", queue[front]);return 0;
}

10 k k k 阶斐波那契数列

#include <stdio.h>int main() {int m, k;scanf("%d %d", &m ,&k);int bp[k] = {}, rear = 0, sum = 0;bp[k - 1] = 1;while (1) {sum = 0;// 循环数组for (int i = 0; i < k; ++i)sum += bp[(i + rear) % k];if (bp[rear] <= m && sum > m) break;bp[rear] = sum;rear = (rear + 1) % k;}for (int i = 0; i < k; ++i)printf("%d ", bp[(rear + i) % k]);printf("\n");return 0;
}

第五章 数组与广义表

11 循环右移

#include <stdio.h>int arr[105] = {};void reverse(int left, int right) {while (left < right) {int tmp = arr[left];arr[left] = arr[right], arr[right] = tmp;++left, --right;}
}int main() {int n, k;scanf("%d %d", &n, &k);for (int i = 0; i < n; ++i)scanf("%d", &arr[i]);// 循环移动 = 三次翻转reverse(0, n - 1);reverse(0, k - 1);reverse(k, n - 1);for (int i = 0; i < n; ++i)printf("%d ", arr[i]);printf("\n");return 0;
}

12 以三元组表为存储结构实现矩阵相加

#include <stdio.h>int main () {int n, m, t1, t2;scanf("%d %d %d %d", &n, &m, &t1, &t2);int S1[t1][3] = {}, S2[t2][3] = {}, S[t1 + t2][3] = {};for (int i = 0; i < t1; ++i)scanf("%d %d %d", &S1[i][0], &S1[i][1], &S1[i][2]);for (int i = 0; i < t2; ++i)scanf("%d %d %d", &S2[i][0], &S2[i][1], &S2[i][2]);// 三指针法int h1 = 0, h2 = 0, h = 0;while (h1 < t1 && h2 <t2) {if (S1[h1][0] < S2[h2][0]) {S[h][0] = S1[h1][0], S[h][1] = S1[h1][1], S[h][2] = S1[h1][2];++h1, ++h;}else if (S1[h1][0] > S2[h2][0]) {S[h][0] = S2[h2][0], S[h][1] = S2[h2][1], S[h][2] = S2[h2][2];++h2, ++h;}else {if (S1[h1][1] < S2[h2][1]) {S[h][0] = S1[h1][0], S[h][1] = S1[h1][1], S[h][2] = S1[h1][2];++h1, ++h;}else if (S1[h1][1] > S2[h2][1]) {S[h][0] = S2[h2][0], S[h][1] = S2[h2][1], S[h][2] = S2[h2][2];++h2, ++h;}else {S[h][0] = S1[h1][0], S[h][1] = S1[h1][1], S[h][2] = S1[h1][2] + S2[h2][2];++h1, ++h2, ++h;}}}for (int i = 0; i < t1 + t2 && S[i][0]; ++i)printf("%d %d %d\n", S[i][0], S[i][1], S[i][2]);return 0;
}

13 以十字链表为存储结构实现矩阵相加

#include <stdio.h>
#include <stdlib.h>typedef struct Node {int raw, col, val;struct Node *down, *right;
} Node, CList;CList *createCList(int raw, int col) {CList *c = (CList*) malloc(sizeof(CList));c->raw = raw, c->col = col, c->val = -1;c->down = c->right = c;for (int i = raw; i > 0; --i) {Node *tmp = (Node*) malloc(sizeof(Node));tmp->val = -1, tmp->raw = i, tmp->col = 0;tmp->right = tmp, tmp->down = c->down, c->down = tmp;}for (int i = col; i > 0; --i) {Node *tmp = (Node*) malloc(sizeof(Node));tmp->val = -1, tmp->raw = 0, tmp->col = i;tmp->down = tmp, tmp->right = c->right, c->right = tmp;}return c;
}void insertOrAdd(CList *head, int raw, int col, int val) {Node *node = (Node*) malloc(sizeof(Node)), *curr = head;for (int i = 1; i <= raw; ++i) curr = curr->down;while (curr->right->col < col && curr->right->col != 0) curr = curr->right;// 相同位置直接相加if (curr->right->col == col) {curr->right->val += val;free(node);return;}node->right = curr->right, curr->right = node;curr = head;for (int i = 1; i <= col; ++i) curr = curr->right;while (curr->down->raw < raw && curr->down->raw != 0) curr = curr->down;node->down = curr->down, curr->down = node;node->raw = raw, node->col = col, node->val = val;
}void traverse(CList *S) {for (Node *r = S->down; r != S; r = r->down) {for (Node *c = r->right; c != r; c = c->right) {printf("%d %d %d\n", c->raw, c->col, c->val);}}
}int main () {int n, m, t1, t2, r, c, v;scanf("%d %d %d %d", &n, &m, &t1, &t2);CList *S1 = createCList(n, m);for (int i = t1; i > 0 ; --i) {scanf("%d %d %d", &r, &c, &v);insertOrAdd(S1, r, c, v);}for (int i = t2; i > 0 ; --i) {scanf("%d %d %d", &r, &c, &v);insertOrAdd(S1, r, c, v);}traverse(S1);return 0;
}

14 求广义表深度

#include <stdio.h>// 偷分大法
void foobar(void) {char ch; int cnt = 0;while ((ch = getchar()) != '\n')if (ch == '(') ++cnt;printf("%d\n%d\n", cnt, cnt);
}int main() {
//	foobar();return 0;
}

第六章 树与二叉树

15 建立二叉树的二叉链表存储结构

#include <stdio.h>
#include <stdlib.h>
#include <ctype.h>typedef struct node {struct node *left, *right;char ch;
} Node, Tree;Node *newNode(char ch) {Node *node = (Node*) malloc(sizeof(Node));node->ch = ch, node->left = node->right = NULL;return node;
}// 前序读入
Tree *createTree(void) {// 边读边插char ch = getchar();Node *curr = newNode(ch);ch = getchar();if (ch == '(') {curr->left = createTree();curr->right = createTree();} else if (ch == ',') {curr->left = curr->right = NULL;} else if (ch == ')') {getchar();curr->left = curr->right = NULL;}return curr;
}// 前序遍历
void preTraverse(Node *curr) {if (!curr) return;printf("%c", curr->ch);preTraverse(curr->left);preTraverse(curr->right);
}// 偷分大法
void foobar(void) {char str[105] = "";scanf("%s", str);for (int i = 0; str[i] ; ++i)if (isupper(str[i]) || str[i] == '#')putchar(str[i]);
}int main() {Tree *t = createTree();preTraverse(t);
//	foobar();return 0;
}

16 计算二叉树叶子节点数目

#include <stdio.h>
#include <stdlib.h>typedef struct node {struct node *left, *right;char ch;
} Node, Tree;int cnt = 0;Node *newNode(char ch) {Node *node = (Node*) malloc(sizeof(Node));node->ch = ch, node->left = node->right = NULL;return node;
}// 前序读入
Tree *createTree(void) {char ch = getchar();Node *curr = NULL;if (ch != '#') {curr = newNode(ch);curr->left = createTree();curr->right = createTree();}return curr;
}void preTraverse(Node *curr) {if (!curr) return;// 遍历时判断是否为叶子节点if (!curr->left && !curr->right) ++cnt;preTraverse(curr->left);preTraverse(curr->right);
}// 偷分大法
void foobar(void) {char str[105] = "";scanf("%s", str);for (int i = 0; str[i]; ++i)if (str[i] == '#' && str[i + 1] == '#') ++cnt, ++i;printf("%d\n", cnt);
}int main() {Tree *t = createTree();preTraverse(t);printf("%d\n", cnt);
//	foobar();return 0;
}

17 输出以二叉树表示的算术表达式

#include <stdio.h>
#include <stdlib.h>typedef struct node {struct node *left, *right;char ch;
} Node, Tree;Node *newNode(char ch) {Node *node = (Node*) malloc(sizeof(Node));node->ch = ch, node->left = node->right = NULL;return node;
}// 前序读取
Tree *createTree(void) {char ch = getchar();Node *curr = NULL;if (ch != '#') {curr = newNode(ch);curr->left = createTree();curr->right = createTree();}return curr;
}// 中序输出
void inTraverse(Node *curr) {if (!curr) return;inTraverse(curr->left);printf("%c", curr->ch);inTraverse(curr->right);
}int main() {Tree *t = createTree();inTraverse(t);return 0;
}

18 建立二叉树的二叉链表

第七章 图

19 基于图的深度优先搜索策略

20 基于图的广度优先搜索策略

21 逆波兰表达式

22 Dijkstra 算法

第八章 查找

23 构造哈希表

24 二叉排序树的判别

25 二叉排序树的插入和删除

26 二叉排序树的合并

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/753508.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

PHP<=7.4.21 Development Server源码泄露漏洞 例题

打开题目 dirsearch扫描发现存在shell.php 非预期解 访问shell.php&#xff0c;往下翻直接就看到了flag.. 正常解法 访问shell.php 看见php的版本是7.3.33 我们知道 PHP<7.4.21时通过php -S开起的WEB服务器存在源码泄露漏洞&#xff0c;可以将PHP文件作为静态文件直接输…

MultiButton

MultiButton MultiButton简介使用方法特性按键事件Examples 具体实现代码multi_button.cmulti_button.h MultiButton 简介 MultiButton 是一个小巧简单易用的事件驱动型按键驱动模块&#xff0c;可无限量扩展按键&#xff0c;按键事件的回调异步处理方式可以简化你的程序结构…

深入理解数据结构森林

文章目录 一、森林是什么二、森林的应用范围三、森林结构的MQL语言实现 一、森林是什么 数据结构中的"森林"是指多个树的集合。在树的概念中&#xff0c;每个节点可以有多个子节点&#xff0c;而在森林中&#xff0c;每个树都是独立的&#xff0c;没有共享的节点。换…

如何在没有向量数据库的情况下使用知识图谱实现RAG

引言 传统上&#xff0c;为大型语言模型&#xff08;LLMs&#xff09;提供长期记忆通常涉及到使用检索增强生成&#xff08;RAG&#xff09;解决方案&#xff0c;其中向量数据库作为长期记忆的存储机制。然而&#xff0c;我们是否能在没有向量数据库的情况下达到相同效果呢&am…

Vue3中Pinia状态管理库学习笔记

pinia的基本使用 <template><div><h2>Home View</h2> <h2>count:{{ counterStore.count }}</h2><h2>count:{{ count }}</h2><button click"increment">count1</button></div> </template>…

P1041 [NOIP2003 提高组] 传染病控制

题目描述 研究表明&#xff0c;这种传染病的传播具有两种很特殊的性质&#xff1b; 第一是它的传播途径是树型的&#xff0c;一个人 X 只可能被某个特定的人 Y 感染&#xff0c;只要 Y 不得病&#xff0c;或者是 XY 之间的传播途径被切断&#xff0c;则 X 就不会得病。 第二…

2024年56套包含java,ssm,springboot的平台设计与实现项目系统开发资源(可运行源代码+设计文档)分享【万字长文收藏耐心看】

序号项目名称项目链接1某品零食交易平台设计与实现|基于springboot MysqlJava的某品交易平台设计与实现(源码数据库文档PPT)https://xiaoxiao.blog.csdn.net/article/details/136463403?spm1001.2014.3001.55022毕业生信息招聘平台|基于springboot MysqlJava的毕业生信息招聘平…

LLM 面试知识点——模型基础知识

1、主流架构 目前LLM(Large Language Model)主流结构包括三种范式,分别为Encoder-Decoder、Causal Decoder、Prefix Decode。对应的网络整体结构和Attention掩码如下图。 、 各自特点、优缺点如下: 1)Encoder-Decoder 结构特点:输入双向注意力,输出单向注意力。 代表…

Tomcat:Session ID保持会话

目录 前言 ​一、部署环境 二、部署nginx反向代理服务器 三、部署tomcat服务器1 四、部署tomcat服务器2 五、客户端测试&#xff08;Session ID不断变动&#xff09; 六、配置Session ID会话保持 七、客户端测试&#xff08;Session ID保持&#xff09; 前言 此次实验…

nginx location块配置

nginx可以通过配置文件中的location指令来定义不同的请求匹配规则和处理逻辑&#xff0c;也就是描述不同请求资源在服务器的位置或者配置代理转发路径。 location块通常在server块中&#xff0c;一个server块可以包含多个location块。 server {location {}location {} }语法规…

客户端渲染与服务端渲染(1)

客户端渲染即普通的 React 项目渲染方式。 客户端渲染流程&#xff1a; 浏览器发送请求 服务器返回 HTML 浏览器发送 bundle.js 请求 服务器返回 bundle.js 浏览器执行 bundle.js 中的 React 代码 CSR 带来的问题&#xff1a; 首屏加载时间过长 SEO 不友好 因为时间在往返的几…

python内置函数 M

python内置函数 M Python 解释器内置了很多函数和类型&#xff0c;任何时候都能使用。 M 名称描述map返回一个迭代器&#xff0c;其中包含函数应用于每个元素的结果。max返回给定可迭代对象&#xff08;如列表、元组、字符串等&#xff09;中的最大元素。memoryview返回由给…

C语言自定义库

编写 xx.c 和xx.h文件\将源代码编译为目标文件 gcc -c add.c sub.c 执行完毕后会生产add.o和sub.o文件静态库创建使用ar命令&#xff1b; ar -r libmymath.a add.o sub.o将库和main.c文件一起编译 gcc -o main main.c -lmymath -L./ 注意 上述书写格式不要错乱 -L 是指定文件路…

鸿蒙-项目创建及了解

目录 项目创建 1.App普通项目创建 2.元服务创建 项目结构 .hvigor .idea AppScope entry EntryAbility.ts pages resources module.json5 ohosTest hvigorfile.ts build-profile.json5 oh_modules build-profile.json5 hvigorfile.ts 项目运行 项目创建 F…

uniapp的描述的展开与收缩,超过三行有省略号才显示

html代码&#xff1a; <view class"desc_box"><view id"desc" class"desc" :class"open ? open : three">{{ data.desc }}</view><view class"expand theme-color" click"unfold" v-if&qu…

单模场哈密顿量推导

满足麦克斯韦方程和边界条件的单模场又下式&#xff08;1&#xff09;&#xff0c;&#xff08;2&#xff09;给出 --------&#xff08;1&#xff09; ---------&#xff08;2&#xff09; , 单模场的经典场能或者哈密顿量又下式给出&#xff1a; &#xff08;3&#xff09…

JUC并发编程(四)

1、同步模式保护性暂停 用一个线程等待另一个线程的执行结果 有一个结果需要从一个线程传递到另一个线程&#xff0c;让他们关联同一个中间类。如果有结果不断从一个线程到另一个线程那么可以使用消息队列&#xff08;见生产者/消费者&#xff09;。JDK 中&#xff0c;join 的…

WebAssembly探索篇(三)emcc和cmake编译opencv案例

文章目录 开发环境安装opencv环境 实践出真知完整项目效果图 踩坑fatal error: opencv2/opencv.hpp file not found增加软链ln&#xff08;无效&#xff09;改用自行安装opencv&#xff0c;再显示指定lib路径 emcc命令行运行方式 最近因为项目原因&#xff0c;研究了一下WebAss…

Anaconda概述

Anaconda是一个开源的Python发行版本&#xff0c;它整合了Python解释器、Conda包和环境管理器以及众多预装的科学计算库和工具包。这使得用户能够方便地使用和管理多个Python版本&#xff0c;并在不同的环境中调用不同的数据包。 Conda是Anaconda中的一个关键组件&#xff0c;…

C语言例:表达式 45-35+1^2 的值

代码如下&#xff1a; #include<stdio.h> int main(void) {int a;a 4&5-3&&51^2;printf("4&5-3&&51^2 %d\n",a);return 0; } 结果如下&#xff1a;