当前位置: 首页 > news >正文 网站建设朋友圈怎么写网页设计html代码大全动物 news 2025/10/29 19:27:33 网站建设朋友圈怎么写,网页设计html代码大全动物,成都建设网站公司哪家好,设计师个人作品集网站思路#xff1a;用栈的后进先出的特性#xff0c;来完成题目的要求 因为C有库#xff0c;可以直接用#xff0c;而C语言没有#xff0c;所以我们直接把写好的栈拷贝上来用。 首先#xff0c;完成框架的搭建 其次#xff0c;再实现循环内的部分。1.左括号入栈 2.右括… 思路用栈的后进先出的特性来完成题目的要求 因为C有库可以直接用而C语言没有所以我们直接把写好的栈拷贝上来用。 首先完成框架的搭建 其次再实现循环内的部分。1.左括号入栈 2.右括号出栈匹配 这里在右括号匹配的判断要注意不要写成两个都相等这样不能说明全都匹配成功所以就写成两边不相等满足则直接return false不满足则继续循环 每次循环结束s。所有循环停止后没有return false则return true 看起来好像没有什么问题对吧 其实上述只适用于左右括号数量相等的场景我们还要考虑两种特殊情况 1.左括号多于右括号 2.右括号多于左括号 左括号多于右括号时循环结束栈内元素个数不为0则用STEmpty判断一下 如果为空与之前相同返回true如果不为空则返回false 右括号多于左括号时在循环内部直到栈已经空了还有右括号要匹配那么此时也直接返回false 完整代码如下 typedef char STDataType; typedef struct Stack {STDataType* a;int top;int capacity; }ST;//初始化 void STInit(ST* pst); //销毁 void STDestroy(ST* pst); //压栈 void STPush(ST* pst, STDataType x); //出栈 void STPop(ST* pst); //获取栈顶元素 STDataType STTop(ST* pst); //检测栈是否为空 bool STEmpty(ST* pst); //检测栈中有效元素个数 int STSize(ST* pst);void STInit(ST* pst) {assert(pst);pst-a NULL;pst-top 0;//top指向栈顶元素的下一个位置pst-capacity 0; }void STDestroy(ST* pst) {assert(pst);free(pst-a);pst-top pst-capacity 0; }void STPush(ST* pst, STDataType x) {assert(pst);if (pst-top pst-capacity){int newCapacity pst-capacity 0 ? 4 : pst-capacity * 2;STDataType* tmp (STDataType*)realloc(pst-a, newCapacity * sizeof(STDataType));if (tmp NULL){perror(realloc fail);return;}pst-a tmp;pst-capacity newCapacity;}pst-a[pst-top] x; }void STPop(ST* pst) {assert(pst);assert(!STEmpty(pst));pst-top--; }STDataType STTop(ST* pst) {assert(pst);assert(!STEmpty(pst));return pst-a[pst-top - 1]; }bool STEmpty(ST* pst) {assert(pst);return pst-top 0; }int STSize(ST* pst) {assert(pst);return pst-top; }bool isValid(char* s) {ST st;STInit(st);while (*s){//1.左括号入栈//2.右括号出栈匹配if (*s (||*s [||*s {){STPush(st, *s);}else{//解决右括号多于左括号的问题if (STEmpty(st)){STDestroy(st);return false;}char top STTop(st);STPop(st);if ((top ! ( *s ))||(top ! [ *s ])||(top ! { *s })){STDestroy(st);return false;}}s;}//解决左括号多于右括号的问题bool ret STEmpty(st);STDestroy(st);return ret; } 文章转载自: http://www.morning.lwzgn.cn.gov.cn.lwzgn.cn http://www.morning.prgrh.cn.gov.cn.prgrh.cn http://www.morning.irqlul.cn.gov.cn.irqlul.cn http://www.morning.zhnyj.cn.gov.cn.zhnyj.cn http://www.morning.fwkpp.cn.gov.cn.fwkpp.cn http://www.morning.ypfw.cn.gov.cn.ypfw.cn http://www.morning.ntyks.cn.gov.cn.ntyks.cn http://www.morning.ssgqc.cn.gov.cn.ssgqc.cn http://www.morning.mlyq.cn.gov.cn.mlyq.cn http://www.morning.nzcys.cn.gov.cn.nzcys.cn http://www.morning.ljcjc.cn.gov.cn.ljcjc.cn http://www.morning.yzktr.cn.gov.cn.yzktr.cn http://www.morning.rksnk.cn.gov.cn.rksnk.cn http://www.morning.clnmf.cn.gov.cn.clnmf.cn http://www.morning.nmngq.cn.gov.cn.nmngq.cn http://www.morning.bflwj.cn.gov.cn.bflwj.cn http://www.morning.trwkz.cn.gov.cn.trwkz.cn http://www.morning.tdscl.cn.gov.cn.tdscl.cn http://www.morning.kcfnp.cn.gov.cn.kcfnp.cn http://www.morning.hcqd.cn.gov.cn.hcqd.cn http://www.morning.btns.cn.gov.cn.btns.cn http://www.morning.bpmth.cn.gov.cn.bpmth.cn http://www.morning.dbqcw.com.gov.cn.dbqcw.com http://www.morning.ztjhz.cn.gov.cn.ztjhz.cn http://www.morning.hkgcx.cn.gov.cn.hkgcx.cn http://www.morning.c7624.cn.gov.cn.c7624.cn http://www.morning.nypsz.cn.gov.cn.nypsz.cn http://www.morning.ryjl.cn.gov.cn.ryjl.cn http://www.morning.nshhf.cn.gov.cn.nshhf.cn http://www.morning.mkrjf.cn.gov.cn.mkrjf.cn http://www.morning.tbknh.cn.gov.cn.tbknh.cn http://www.morning.ykgkh.cn.gov.cn.ykgkh.cn http://www.morning.jsmyw.cn.gov.cn.jsmyw.cn http://www.morning.ntzfl.cn.gov.cn.ntzfl.cn http://www.morning.ckhyj.cn.gov.cn.ckhyj.cn http://www.morning.grxsc.cn.gov.cn.grxsc.cn http://www.morning.lmfmd.cn.gov.cn.lmfmd.cn http://www.morning.wgqtt.cn.gov.cn.wgqtt.cn http://www.morning.lbrrn.cn.gov.cn.lbrrn.cn http://www.morning.gqjqf.cn.gov.cn.gqjqf.cn http://www.morning.lmhwm.cn.gov.cn.lmhwm.cn http://www.morning.pqppj.cn.gov.cn.pqppj.cn http://www.morning.hcsqznn.cn.gov.cn.hcsqznn.cn http://www.morning.sskkf.cn.gov.cn.sskkf.cn http://www.morning.rxhn.cn.gov.cn.rxhn.cn http://www.morning.jytrb.cn.gov.cn.jytrb.cn http://www.morning.mcgsq.cn.gov.cn.mcgsq.cn http://www.morning.mgbsp.cn.gov.cn.mgbsp.cn http://www.morning.hpdpp.cn.gov.cn.hpdpp.cn http://www.morning.fxxmj.cn.gov.cn.fxxmj.cn http://www.morning.bktly.cn.gov.cn.bktly.cn http://www.morning.ghcfx.cn.gov.cn.ghcfx.cn http://www.morning.wfyzs.cn.gov.cn.wfyzs.cn http://www.morning.ppwdh.cn.gov.cn.ppwdh.cn http://www.morning.sltfk.cn.gov.cn.sltfk.cn http://www.morning.xcbnc.cn.gov.cn.xcbnc.cn http://www.morning.gcbhh.cn.gov.cn.gcbhh.cn http://www.morning.lksgz.cn.gov.cn.lksgz.cn http://www.morning.qqhfc.cn.gov.cn.qqhfc.cn http://www.morning.srnth.cn.gov.cn.srnth.cn http://www.morning.mwbqk.cn.gov.cn.mwbqk.cn http://www.morning.qynnw.cn.gov.cn.qynnw.cn http://www.morning.fsjcn.cn.gov.cn.fsjcn.cn http://www.morning.dshkp.cn.gov.cn.dshkp.cn http://www.morning.rlqwz.cn.gov.cn.rlqwz.cn http://www.morning.qkrgk.cn.gov.cn.qkrgk.cn http://www.morning.fdrb.cn.gov.cn.fdrb.cn http://www.morning.mfltz.cn.gov.cn.mfltz.cn http://www.morning.kpbgvaf.cn.gov.cn.kpbgvaf.cn http://www.morning.fygbq.cn.gov.cn.fygbq.cn http://www.morning.huihuangwh.cn.gov.cn.huihuangwh.cn http://www.morning.muniubangcaishui.cn.gov.cn.muniubangcaishui.cn http://www.morning.hytr.cn.gov.cn.hytr.cn http://www.morning.kscwt.cn.gov.cn.kscwt.cn http://www.morning.mbzlg.cn.gov.cn.mbzlg.cn http://www.morning.ylpl.cn.gov.cn.ylpl.cn http://www.morning.rfwgg.cn.gov.cn.rfwgg.cn http://www.morning.jqkjr.cn.gov.cn.jqkjr.cn http://www.morning.bsjxh.cn.gov.cn.bsjxh.cn http://www.morning.jfwbr.cn.gov.cn.jfwbr.cn 查看全文 http://www.tj-hxxt.cn/news/260310.html 相关文章: 医院网站建设的计划wordpress中文转英文 原创小说网站建设源码wordpress 需要会php 企业网站做静态网站还是小型购物网站开发 做网站的标准二级域名免费 网站用什么框架电子商城网站建设 模板 网上做兼职正规网站python在线编程工具 网站添加微信分享代码企业网站开发需求分析模板 佛山网站建设设计公司wordpress更改布局 社团网站建设的功能定位网站开发虚拟电话 flash网站引导页面制作天津网站建设哪家权威 双滦网站建设网站pv uv 多少算好站 wordpress+去掉阅读合肥网站建设方案优化 特效比漂亮的网站标志设计ppt 如何安装网站模板文件卖农产品最好的平台 顺义手机网站建设网络营销最基本的应用方式是什么 辽宁沈阳今天消息赣州seo排名 网页素材网站有哪些wordpress默认主题下载地址 绵阳免费网站建设欧普家居设计家官网 网站模板下载简单的那种手机报价网 建设网站费用评估购物类网站模板 河南网站关键词优化代理html5手机网站源码下载 模板网站建设教程视频教程遵义建站平台哪家好 舞钢市住房和城乡建设局网站邯郸网站设计怎么开发 服装企业微网站建设网站的设计制作与维护 搜索网站排名软件建设网站找什么条件 dede响应式网站模板汉中市建设局网站 pos机做网站推广深圳市网站哪家做的好 青岛网站制作网页专业做视频的网站有哪些 网站开发是分为前端和后端吗wordpress模板路径 西安做网站建设的公司公司网站 建设