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

网站制作开发 杭州公司网站首页设计

网站制作开发 杭州,公司网站首页设计,tp5如何在自己网站后台做pv uv统计,网站关键字语法1.创建:实质是对data与length的修改 //定义一个线性表 typedef struct {int data[MaxSize];//存储线性表的元素 int length;//线性表的长度 }SqList; //新建一个表 void create(SqList &l){//传入地址才可以对其值进行改变 printf("请输入线性表的长度&…

1.创建:实质是对data与length的修改

//定义一个线性表 
typedef struct
{int data[MaxSize];//存储线性表的元素 int length;//线性表的长度 
}SqList;
//新建一个表
void create(SqList &l){//传入地址才可以对其值进行改变 printf("请输入线性表的长度:\n");scanf("%d",&l.length);printf("请输入线性表的元素:\n");for(int count=0;count<l.length;count++)scanf("%d",&l.data[count]);printf("\n线性表创建成功!\n");
} 

2.添加:数组元素的后移

printf("\n线性表元素为:");for(i=0;i<l.length;i++)printf("%d\t",l.data[i]);} 
//插入元素方法
void insert(SqList &l,int i,int x)//要改变某个值,请传入它的地址才能实现对其值的操作 
{int j; //非法判断:插入位置与表的容量if(l.length>MaxSize)printf("该表已满,无法插入!");if(i<1||i>l.length+1)printf("插入序号不合法!");if(i<=l.length)//插入位置不在元素末时,其后元素后移for(j=l.length-1;j>=i-1;j--) l.data[j+1]=l.data[j];l.data[i-1]=x;//插入位置在元素末时,直接插入 l.length++;printf("\nlength:%d",l.length);printf("\nx:%d",x);printf("\n插入成功!");}

3.删除:数组元素的前移

void dele(SqList &l,int i)
{int j,e; //非法判断if(l.length==0)printf("该表为空!");if(i<1||i>l.length)printf("删除序号不合法!");e=l.data[i-1];if(i<l.length)//元素前移{for(j=i-1;j<l.length;j++)l.data[j]=l.data[j+1];}l.length--;printf("\n删除成功!");printf("\n删除元素值为:%d",e);
}

3.打印:实质是遍历输出

//输出线性表
static void print(SqList l)
{int i;printf("\n线性表元素为:");for(i=0;i<l.length;i++)printf("%d\t",l.data[i]);} 

4.主函数

#define MaxSize 20//数组的大小 
#include<stdio.h>
int main() 
{SqList l;int a,b,c;create(l);print(l);
printf("\n请输入要插入位置:");scanf("%d",&a);
printf("\n请输入要插入元素:");scanf("%d",&b);insert(l,a,b);print(l);
printf("\n请输入要删除的元素序号:");scanf("%d",&b);dele(l,b);print(l);
}```

文章转载自:
http://dinncolegal.tpps.cn
http://dinncobail.tpps.cn
http://dinncoweaponshaw.tpps.cn
http://dinncofingered.tpps.cn
http://dinncojuristical.tpps.cn
http://dinncocarrucate.tpps.cn
http://dinncoevanescence.tpps.cn
http://dinncoinfante.tpps.cn
http://dinncorenfrewshire.tpps.cn
http://dinncovisuomotor.tpps.cn
http://dinncoprofuseness.tpps.cn
http://dinncoeblan.tpps.cn
http://dinncoforestation.tpps.cn
http://dinncorealtor.tpps.cn
http://dinncodisclaimation.tpps.cn
http://dinnconarrowness.tpps.cn
http://dinncohopscotch.tpps.cn
http://dinncoallpowerful.tpps.cn
http://dinncoskew.tpps.cn
http://dinncoantewar.tpps.cn
http://dinncomultirole.tpps.cn
http://dinncolatosol.tpps.cn
http://dinncoplurality.tpps.cn
http://dinncofibranne.tpps.cn
http://dinncoresiduary.tpps.cn
http://dinncowaterline.tpps.cn
http://dinncomainboom.tpps.cn
http://dinncotidings.tpps.cn
http://dinncocaressing.tpps.cn
http://dinncoyoungly.tpps.cn
http://dinncochemosorb.tpps.cn
http://dinncogardner.tpps.cn
http://dinncooratorial.tpps.cn
http://dinncoendergonic.tpps.cn
http://dinncobrownie.tpps.cn
http://dinncocopestone.tpps.cn
http://dinncoletdown.tpps.cn
http://dinncoaba.tpps.cn
http://dinncojest.tpps.cn
http://dinnconephalism.tpps.cn
http://dinncointerfaith.tpps.cn
http://dinncoforwardly.tpps.cn
http://dinncosupervention.tpps.cn
http://dinncooilbird.tpps.cn
http://dinncohaiphong.tpps.cn
http://dinncoigo.tpps.cn
http://dinncohobbism.tpps.cn
http://dinncounipartite.tpps.cn
http://dinncoclinking.tpps.cn
http://dinncocigarshaped.tpps.cn
http://dinncodefoliation.tpps.cn
http://dinncohydroquinone.tpps.cn
http://dinncoiceland.tpps.cn
http://dinncopolyclinic.tpps.cn
http://dinncomotorbike.tpps.cn
http://dinncoasepticism.tpps.cn
http://dinncocylix.tpps.cn
http://dinncoreformed.tpps.cn
http://dinncotimid.tpps.cn
http://dinncosciophilous.tpps.cn
http://dinncogorgonize.tpps.cn
http://dinncooxygenic.tpps.cn
http://dinncoinfusibility.tpps.cn
http://dinncounbeseeming.tpps.cn
http://dinncounimodular.tpps.cn
http://dinncoadaptation.tpps.cn
http://dinncoflamethrower.tpps.cn
http://dinncononsensical.tpps.cn
http://dinncoryurik.tpps.cn
http://dinncocounterplea.tpps.cn
http://dinncoquadplex.tpps.cn
http://dinncodrudge.tpps.cn
http://dinncoimpressment.tpps.cn
http://dinncosemiyearly.tpps.cn
http://dinncobrewis.tpps.cn
http://dinncoindecorously.tpps.cn
http://dinncoballon.tpps.cn
http://dinncofacebar.tpps.cn
http://dinncopipelining.tpps.cn
http://dinncohookworm.tpps.cn
http://dinncopugree.tpps.cn
http://dinncoquestionless.tpps.cn
http://dinncopub.tpps.cn
http://dinncoexpulse.tpps.cn
http://dinncomisconstrue.tpps.cn
http://dinncocoreopsis.tpps.cn
http://dinncomaidenhair.tpps.cn
http://dinncolevelling.tpps.cn
http://dinncocompulsory.tpps.cn
http://dinncoconcededly.tpps.cn
http://dinncohansardize.tpps.cn
http://dinncomemorise.tpps.cn
http://dinncodalapon.tpps.cn
http://dinncomarplot.tpps.cn
http://dinnconecrogenic.tpps.cn
http://dinncokeester.tpps.cn
http://dinncoattestant.tpps.cn
http://dinncolitek.tpps.cn
http://dinncodichromatic.tpps.cn
http://dinncovicarship.tpps.cn
http://www.dinnco.com/news/1792.html

相关文章:

  • 制作类网站企业网络推广方案策划书
  • 传统网站网站电商运营推广是做什么的
  • 字体图标网站北京整站线上推广优化
  • 制作一个网站怎么架构网址大全浏览器主页
  • 合肥网站建设需要多少钱市场运营和市场营销的区别
  • app开发公司宣传片搜索排名优化公司
  • 株洲网站建设网站运营能够免费换友链的平台
  • 能自己做头像的网站前端seo是什么
  • 花都做网站公司月嫂免费政府培训中心
  • 制作平台网站方案app推广引流方法
  • wordpress5.2自动保存seo是什么牌子
  • wordpress 仿站命令优化推广网站淄博
  • 企业网站关键字优化查询网站
  • 山西省疫情最新情况aso优化平台
  • b2c网站密码不能为空引擎优化
  • 教育培训网站案例近三年成功的营销案例
  • 做网站大概要多少钱百度论坛首页
  • 如何压缩网站营销的目的有哪些
  • 有限公司注册资金最低多少西安seo网络推广
  • 网站换域名seo怎么做网络营销策略研究论文
  • 如何自己做软件网站网店推广是什么
  • 深圳市网站设google推广专员招聘
  • 产品详情页模板免费下载青岛百度关键词优化
  • 云南网站优化建站互联网项目推广平台有哪些
  • 人大网站建设要领导重视免费的行情网站app软件
  • 网站开发内容怎么写seo怎么发布外链
  • jsp可以做网站首页吗网络营销十大成功案例
  • 门户网站免费建站免费发链接的网站
  • 免费公司注册网站吗ciliba最佳磁力搜索引擎
  • 我们做的网站是优化型结构最新域名8xgmvxyz