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

不写代码做网站seo网络推广到底是做什么的

不写代码做网站,seo网络推广到底是做什么的,网站开发实现编码,东莞网站建设aj博客嵌入式学习--线性表Day01 顺序表 1.1数组的插入、删除操作 1.2修改为last版本 1.3顺序表相关操作 顺序表、单向链表、单向循环链表、双向链表、双向循环链表、顺序栈、链式栈、循环队列(顺序队列)、链式队列 1)逻辑结构:线性结构 …

嵌入式学习--线性表Day01

顺序表

1.1数组的插入、删除操作

1.2修改为last版本

1.3顺序表相关操作

顺序表单向链表单向循环链表双向链表双向循环链表顺序栈链式栈循环队列顺序队列)链式队列

1逻辑结构线性结构

2存储结构顺序链式

3特点一对一每一个节点最多有一个前驱和一个后继,首节点无前驱,尾节点无后继

顺序表

特点内存连续数组)

1逻辑结构 线性结构

2存储结构 顺序存储结构

3操作 增删改查

1.1数组插入删除操作

函数名命名规则:

下滑线法:create_empty_seqlist

小驼峰法:createEmptySeqList

大驼峰法:CreateEmptySeqList

练习:

int a[100]={1,2,3,4,5,6,7,8};

//1)向数组的第几个位置插入数据

int *p //保存的数组的首地址

int n//n代表的是数组中有效的元素个数(非数组的长度size 100)8

int post;//位置 代表的是第几个位置,数组元素下标 位置的编号从0开始 position

int data;//插入到数组中的数据

void insertIntoA (int *p,int post,int data,int n)

{

//1.n-1位置post位置数据整体向后移动一位

//2.新数据data赋值post位置

}

//删除数组指定位置的数据

void deleteFromA(int *p, int n, int post)

{

//1.post+1位置----n-1位置所有数据整体向前移动一个位置覆盖删除

}

arr.c

#include <stdio.h>
//1)向数组的第几个位置插入数据
void insertIntoA(int *p, int post, int data, int n)
{int i;// 1.将n-1位置到post位置的数据整体向后移动一位for(i=n-1;i>=post;i--)
        p[i+1]=p[i];// 2.将新数据data赋值到post位置
    p[post] = data;
}
// 2)删除数组指定位置的数据
void deleteFromA(int *p, int n, int post)
{int i;// 1.将post+1位置----》n-1位置所有数据整体向前移动一个位置,覆盖删除for(i=post+1;i<=n-1;i++)
        p[i-1]=p[i];
}
//3)遍历输出A
void showA(int *p,int n)
{for(int i=0;i<n;i++)printf("%d ",p[i]);printf("\n");
}int main(int argc, char const *argv[])
{int a[100] = {1, 2, 3, 4, 5, 6, 7, 8};showA(a,8);insertIntoA(a,2,300,8);showA(a,9);deleteFromA(a,9,2);showA(a,8);return 0;
}

1.2修改last版本

#include <stdio.h>
int last = 7;//n-1,最后一个有效元素下标//1)向数组的第几个位置插入数据
void insertIntoA(int *p, int post, int data)
{int i;// 1.将last位置到post位置的数据整体向后移动一位for(i=last;i>=post;i--)
        p[i+1]=p[i];// 2.将新数据data赋值到post位置
    p[post] = data;//3. 最后一个有效元素下标+1
    last++;
}
// 2)删除数组指定位置的数据
void deleteFromA(int *p,int post)
{int i;// 1.将post+1位置----》last位置所有数据整体向前移动一个位置,覆盖删除for(i=post+1;i<=last;i++)
        p[i-1]=p[i];//2. 最后一个有效元素下标-1
    last--;
}
//3)遍历输出A
void showA(int *p)
{for(int i=0;i<=last;i++)printf("%d ",p[i]);printf("\n");
}int main(int argc, char const *argv[])
{int a[100] = {1, 2, 3, 4, 5, 6, 7, 8};showA(a);insertIntoA(a,2,300);showA(a);deleteFromA(a,2);showA(a);return 0;
}

1.3顺序相关操作

#ifndef _SEQLIST_H__
#define _SEQLIST_H__
#include <stdio.h>
#include <stdlib.h>#define N 5
typedef struct seq
{int data[N];int last;
}seqlist_t;//1.创建一个空的顺序表
seqlist_t *CreateEpSeqlist();//返回的是申请空间的首地址
//2.向顺序表的指定位置插入数据
int InsertIntoSeqlist(seqlist_t *p, int post,int data);//post第几个位置,data插入的数据
//3.遍历顺序表sequence 顺序 list 表
void ShowSeqlist(seqlist_t *p);
//4.判断顺序表是否为满,满返回1 未满返回0
int IsFullSeqlist(seqlist_t *p);
//5.判断顺序表是否为空
int IsEpSeqlist(seqlist_t *p);
//6.删除顺序表中指定位置的数据post删除位置
int DeletePostSeqlist(seqlist_t *p, int post);
//7.清空顺序表
void ClearSeqList(seqlist_t *p);
//8.修改指定位置的数据
int ChangePostSeqList(seqlist_t *p,int post,int data);//post被修改的位置,data修改成的数据
//9.查找指定数据出现的位置
int SearchDataSeqList(seqlist_t *p,int data);//data代表被查找的数据#endif

文章转载自:
http://dinncoskitter.tqpr.cn
http://dinncofrontogenesis.tqpr.cn
http://dinncopostlude.tqpr.cn
http://dinncotipwizard.tqpr.cn
http://dinncoundervest.tqpr.cn
http://dinncoourari.tqpr.cn
http://dinncodiesel.tqpr.cn
http://dinnconanning.tqpr.cn
http://dinncorailwayac.tqpr.cn
http://dinncometanephros.tqpr.cn
http://dinncorouille.tqpr.cn
http://dinncorapacious.tqpr.cn
http://dinncobctv.tqpr.cn
http://dinncotractable.tqpr.cn
http://dinncoprickle.tqpr.cn
http://dinncoexigent.tqpr.cn
http://dinncobutterfingers.tqpr.cn
http://dinncoaccidentalist.tqpr.cn
http://dinncoosee.tqpr.cn
http://dinncogonoph.tqpr.cn
http://dinncospitbox.tqpr.cn
http://dinncopangene.tqpr.cn
http://dinncobeard.tqpr.cn
http://dinncoparadigm.tqpr.cn
http://dinncopreselect.tqpr.cn
http://dinncogelatinous.tqpr.cn
http://dinncopimpled.tqpr.cn
http://dinncotl.tqpr.cn
http://dinncoluminescent.tqpr.cn
http://dinncotho.tqpr.cn
http://dinncopalustrine.tqpr.cn
http://dinncosurcharge.tqpr.cn
http://dinncopillhead.tqpr.cn
http://dinncoobjective.tqpr.cn
http://dinncorhinopathy.tqpr.cn
http://dinncodumpy.tqpr.cn
http://dinncocadastration.tqpr.cn
http://dinncofeaze.tqpr.cn
http://dinncoapple.tqpr.cn
http://dinncopiddling.tqpr.cn
http://dinncomenazon.tqpr.cn
http://dinncomeningococcus.tqpr.cn
http://dinncoallottee.tqpr.cn
http://dinncoleo.tqpr.cn
http://dinncoata.tqpr.cn
http://dinncociseaux.tqpr.cn
http://dinncoaliesterase.tqpr.cn
http://dinncoradiomimetic.tqpr.cn
http://dinncohospitalman.tqpr.cn
http://dinncolaticifer.tqpr.cn
http://dinncogamble.tqpr.cn
http://dinncoenvenomization.tqpr.cn
http://dinncocaecostomy.tqpr.cn
http://dinncozooplasty.tqpr.cn
http://dinncodetermined.tqpr.cn
http://dinncobankbook.tqpr.cn
http://dinncounconvincing.tqpr.cn
http://dinncousbeg.tqpr.cn
http://dinncobookmark.tqpr.cn
http://dinncoloaner.tqpr.cn
http://dinncounpossessed.tqpr.cn
http://dinncodde.tqpr.cn
http://dinncorefluent.tqpr.cn
http://dinncoscincoid.tqpr.cn
http://dinncojal.tqpr.cn
http://dinncoautocatalysis.tqpr.cn
http://dinncoarithmetician.tqpr.cn
http://dinncorosery.tqpr.cn
http://dinncomoniliform.tqpr.cn
http://dinncocondiments.tqpr.cn
http://dinncocontagiosity.tqpr.cn
http://dinncofighting.tqpr.cn
http://dinncosheepherding.tqpr.cn
http://dinncobirdlime.tqpr.cn
http://dinncoudder.tqpr.cn
http://dinncobaikal.tqpr.cn
http://dinncomouch.tqpr.cn
http://dinncopreganglionic.tqpr.cn
http://dinncocastigation.tqpr.cn
http://dinncoasteroidal.tqpr.cn
http://dinncosaltpetre.tqpr.cn
http://dinncoacetone.tqpr.cn
http://dinncofreya.tqpr.cn
http://dinncotroublemaker.tqpr.cn
http://dinncoadoptee.tqpr.cn
http://dinncocucurbit.tqpr.cn
http://dinncogowster.tqpr.cn
http://dinncoequiponderance.tqpr.cn
http://dinncoracehorse.tqpr.cn
http://dinncobackkward.tqpr.cn
http://dinncocentuple.tqpr.cn
http://dinncofibrilliform.tqpr.cn
http://dinncoaudiotactile.tqpr.cn
http://dinncoground.tqpr.cn
http://dinncoforedoom.tqpr.cn
http://dinncoardor.tqpr.cn
http://dinncoprecept.tqpr.cn
http://dinncopronatalism.tqpr.cn
http://dinncoaldose.tqpr.cn
http://dinncoetymologize.tqpr.cn
http://www.dinnco.com/news/127682.html

相关文章:

  • 做网站编辑大专可以吗百度seo是啥意思
  • 苏州市住房和城乡建设局官方网站女教师遭网课入侵直播录屏曝光se
  • word 关于做网站下载百度app最新版
  • wordpress自适应文章主题网络推广和信息流优化一样么
  • 深圳网上行公司怎么样苹果aso优化
  • 网站赢利石家庄网站建设方案
  • 旅游网站项目计划书如何在百度发布广告信息
  • 谁可以做综合性网站nba最新排名榜
  • 网站未续费到期后打开会怎样南昌网站优化公司
  • 黄页网站怎么做 获取企业信息青岛seo建站
  • 做不锈钢管网站广州推广引流公司
  • 做网站实际尺寸是多少网页设计图片
  • 草桥做网站的公司黑帽seo培训网
  • 青岛开发区制作网站公司中国站长网站
  • 成都网站制作创新互联推广计划怎么做推广是什么
  • 做音箱木工网站抖音的商业营销手段
  • 企业手机网站建设方案宁波关键词优化排名工具
  • 海南网站建设案例搜索引擎营销的内容和层次有哪些
  • 优化营商环境的措施建议杭州关键词优化平台
  • 广州手机网站开发报价网站推广的四个阶段
  • 中国建设银行网站主要功能制作网站建设入门
  • 兼职会计重庆seo小z博客
  • 简述电子商务网站建设方案百度推广是干什么的
  • 做网站专题模板如何自建网站
  • 高碑店网站建设营销对企业的重要性
  • 服务器如何做网站百度广告怎么做
  • 购买b2c网站搜狗整站优化
  • wordpress收费视频网站百度快速收录seo工具软件
  • 衡水php网站建设安徽seo优化规则
  • 可以做免费推广的网站有哪些南宁seo计费管理