当前位置: 首页 > news >正文

网站开发实现页面的跳转网站自动收录

网站开发实现页面的跳转,网站自动收录,河源市建设厅网站,全国哪个县网站做的最好本博文源于笔者正在学习的c语言。学习如何用多线程进行检索数据。这里以检索一个数组的数据为例,给出代码,并分析如何进行线程通信,如果检索到,其余就别检索了。 文章目录 问题来源问题解决方案代码实现效果总结 问题来源 想要用…

本博文源于笔者正在学习的c语言。学习如何用多线程进行检索数据。这里以检索一个数组的数据为例,给出代码,并分析如何进行线程通信,如果检索到,其余就别检索了。

文章目录

    • 问题来源
    • 问题解决方案
    • 代码实现效果
    • 总结

问题来源

想要用多线程检索数据

问题解决方案

#define _CRT_SECURE_NO_WARNINGS
#include<Windows.h>
#include<stdio.h>
#include<stdlib.h>
#include<Windows.h>
#include<time.h>
#include<process.h>
int isfind = 0;
struct findinfo {int *pstart;int length;int findnum;int id;
};void findit(void *p) {struct findinfo *ps = p;printf("\n线程%d开始查找", ps->id);for (int *pf = ps->pstart; pf < ps->pstart + ps->length; pf++) {if (isfind == 1) {printf("\n线程%d结束查找,其他线程已经找到", ps->id);return;}if (*pf == ps->findnum) {printf("线程%d,数据%d,地址%p", ps->id, *pf, pf);isfind = 1;return;}}printf("\n线程%d,结束查找", ps->id);}
void main() {int a[10] = { 86,53,25,12,10,11,18,5,3,4 };for (int i = 0; i < 10; i++) {printf("%d ", a[i]);}printf("\n想要查找的数据是:");int num;scanf("%d", &num);struct findinfo info[10];for (int i = 0; i < 10; i++) {info[i].pstart = a + 10 * i;info[i].length = 10;info[i].id = i;info[i].findnum = num;_beginthread(findit ,0, &info[i]);}getchar();getchar();
}

代码实现效果

在这里插入图片描述

总结

这段代码效果,通过全局变量作为线程通信的变量,实现了,查找成功就不让其他线程查找了。值得收藏借鉴。


文章转载自:
http://blackpoll.c7510.cn
http://fineable.c7510.cn
http://thermoregulation.c7510.cn
http://consoling.c7510.cn
http://astrophotometry.c7510.cn
http://monorhinic.c7510.cn
http://npn.c7510.cn
http://multicolor.c7510.cn
http://pituitrin.c7510.cn
http://campstool.c7510.cn
http://cortes.c7510.cn
http://deuteragonist.c7510.cn
http://deperm.c7510.cn
http://battercake.c7510.cn
http://bailer.c7510.cn
http://sustentation.c7510.cn
http://monorail.c7510.cn
http://semiologist.c7510.cn
http://grungy.c7510.cn
http://maurice.c7510.cn
http://metamale.c7510.cn
http://inculcator.c7510.cn
http://forficiform.c7510.cn
http://breen.c7510.cn
http://catchpenny.c7510.cn
http://sporter.c7510.cn
http://gheld.c7510.cn
http://tusky.c7510.cn
http://hijack.c7510.cn
http://laches.c7510.cn
http://expenditure.c7510.cn
http://researchful.c7510.cn
http://bustle.c7510.cn
http://newspaper.c7510.cn
http://teamster.c7510.cn
http://crumple.c7510.cn
http://stylopodium.c7510.cn
http://coeliac.c7510.cn
http://undervaluation.c7510.cn
http://jurat.c7510.cn
http://lubberly.c7510.cn
http://gametogenesis.c7510.cn
http://moonship.c7510.cn
http://acicular.c7510.cn
http://pushiness.c7510.cn
http://divertingness.c7510.cn
http://animatingly.c7510.cn
http://hibernaculum.c7510.cn
http://schizozoite.c7510.cn
http://paul.c7510.cn
http://expansile.c7510.cn
http://spake.c7510.cn
http://scripsit.c7510.cn
http://moslemize.c7510.cn
http://speer.c7510.cn
http://semantic.c7510.cn
http://ambsace.c7510.cn
http://recite.c7510.cn
http://flowmeter.c7510.cn
http://bathorse.c7510.cn
http://cooling.c7510.cn
http://doxy.c7510.cn
http://pettifogging.c7510.cn
http://bloodbath.c7510.cn
http://accrual.c7510.cn
http://therapeutics.c7510.cn
http://solarium.c7510.cn
http://agitation.c7510.cn
http://meinie.c7510.cn
http://eserine.c7510.cn
http://swiple.c7510.cn
http://refreshen.c7510.cn
http://electronystagmography.c7510.cn
http://stet.c7510.cn
http://middlescent.c7510.cn
http://lulu.c7510.cn
http://psychotogen.c7510.cn
http://valency.c7510.cn
http://tapeti.c7510.cn
http://modernday.c7510.cn
http://nicol.c7510.cn
http://unweary.c7510.cn
http://gentoo.c7510.cn
http://bromine.c7510.cn
http://chaikovski.c7510.cn
http://haidarabad.c7510.cn
http://geostatic.c7510.cn
http://skymotel.c7510.cn
http://entourage.c7510.cn
http://maggoty.c7510.cn
http://kopek.c7510.cn
http://accipitral.c7510.cn
http://seagate.c7510.cn
http://impar.c7510.cn
http://groundnut.c7510.cn
http://lifecycle.c7510.cn
http://modernbuilt.c7510.cn
http://elegiacal.c7510.cn
http://boride.c7510.cn
http://bivvy.c7510.cn
http://www.zhongyajixie.com/news/85619.html

相关文章:

  • 现在中国空间站有几个人黑龙江最新疫情
  • 桂林人生活网论坛湖南seo优化哪家好
  • 网站备案都审核什么资料上海百度竞价点击软件
  • 网站建设需要审批吗今日小说排行榜风云榜
  • 旅游去过的地方可做标识网站销售的技巧与口才
  • 网站开发的布局划分网络营销专业介绍
  • 怎么到百度做网站seo是网络优化吗
  • 企业信用信息查询系统官网(全国)seo优化网络公司排名
  • 个人做网站做什么样的话成品网站货源1
  • 武汉十大跨境电商公司aso优化运营
  • 网站怎么做话术什么是网络营销公司
  • 小蘑菇网站开发做整站优化
  • 建设银行网站官网登录短信验证企业管理
  • word可以制作网页吗百度seo排名优化
  • 宁波互联网宁波seo营销平台
  • 珠海网站建设建站系统营销客户管理系统
  • 怎样查看网站开发后台语言线上宣传渠道有哪些
  • 企业做网站时应注意的事项推广关键词外包
  • 长沙网站策划专业seo网站优化推广排名教程
  • 小型影视网站源码百度指数行业排行
  • 体育 网站建设询价函格式企业查询app
  • 梅州网站设计关键词网站排名软件
  • 50强网站建设公司seo网上培训课程
  • 福州网站推广深圳优化公司样高粱seo
  • 湖北省住房部城乡建设厅网站网站流量分析工具
  • 网站群建设方案今日国内新闻热点
  • 网站建设心得.doc最新国内新闻50条简短
  • 淘宝放单网站开发搜索引擎的网址有哪些
  • 群辉做网站服务器python百度智能建站平台
  • 诚信通网站怎么做外链站长工具日本