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

网站工期表怎么做聚名网怎么提现

网站工期表怎么做,聚名网怎么提现,模版网站后期可以更换图片吗,如何建设自己的公司网站文章目录 4.3 字符串4.3.1 字符串的定义与存储4.3.2 字符串的基本操作#xff08;链式存储#xff09;1. 结构体2. 初始化3. 判空4. 串尾添加5. 打印6. 串长统计7. 查找8. 复制9. 插入10. 删除11. 串拼接12. 销毁13. 主函数14. 代码整合 4.3 字符串 字符串(String)是由零个或… 文章目录 4.3 字符串4.3.1 字符串的定义与存储4.3.2 字符串的基本操作链式存储1. 结构体2. 初始化3. 判空4. 串尾添加5. 打印6. 串长统计7. 查找8. 复制9. 插入10. 删除11. 串拼接12. 销毁13. 主函数14. 代码整合 4.3 字符串 字符串(String)是由零个或多个字符(char)顺序排列组成的有限序列简称为串。例如 “good morning”就是由12个字符构成的一个字符串。一般把字符串记作 S ′ ′ a 0 a 1 … a n − 1 ′ ′ Sa_{0} a_{1}…a_{n-1} S′′a0​a1​…an−1′′​ 其中S是串名引号中的字符序列是串值。字符个数是串的长度长度为0的串被称为空串因为它不包含任何字符。需要注意的是空格字符 并不是空串因为它包含一个字符——空格。   若把某个串称为主串则主串中任意个连续的字符组成的子序列被称为子串。子串在主串中第一次出现时其首字符在主串中的序号被称为该子串在主串中的位置。   关于字符串的基础知识亦可参考前文 【重拾C语言】六、批量数据组织三数组初值字符串、字符数组、字符串数组类型定义 typedef 【重拾C语言】七、指针三指针与字符串字符串与字符串数组指针与字符串的遍历、拷贝、比较反转字符串 4.3.1 字符串的定义与存储 字符串在许多非数值计算问题中扮演着重要的角色并在模式匹配、程序编译和数据处理等领域得到广泛应用。在高级程序设计语言中字符串通常被定义为以特殊字符’\0’称为空字符或字符串结束符结尾的字符序列。这个约定使得在处理字符串时可以方便地确定字符串的结束位置。关于字符串的存储方式主要有两种常见的方式 顺序存储字符串的字符按照顺序依次存储在连续的内存空间中。这种方式使得字符串的访问和操作效率较高可以通过索引直接访问任意位置的字符。在顺序存储方式中字符串的长度可以通过计算字符个数或者遇到’\0’结束符来确定。 链式存储字符串的字符通过链表的方式进行存储。每个节点包含一个字符和指向下一个节点的指针。链式存储方式可以动态地分配内存适用于长度可变的字符串。但是相比于顺序存储链式存储方式需要更多的内存空间并且访问字符需要遍历链表。 选择何种存储方式取决于具体的应用场景和需求。顺序存储适合于需要频繁访问和操作字符串的情况而链式存储适合于长度可变的字符串或者对内存空间要求较高的情况。具体C语言实现可参照前文   【数据结构】数组和字符串十一字符串的定义与存储顺序存储、链式存储及其C语言实现 4.3.2 字符串的基本操作链式存储 串长统计返回串s的长度串定位返回字符或子串在母串s中首次出现的位置的指针串复制将一个串s2复制到另一个串s1中串插入在指定位置后面插入字符串串删除是删除一个子串串拼接将串s2拼接到串s1的尾部…… 【数据结构】线性表二单链表及其基本操作创建、插入、删除、修改、遍历打印 1. 结构体 typedef struct Node {char data;struct Node* next; } Node;typedef struct {Node* head;Node* tail; } LinkedList; Node表示链表的节点包含一个字符数据和一个指向下一个节点的指针。LinkedList表示链表包含链表的头节点和尾节点。 2. 初始化 initLinkedList函数用于初始化链表将头节点和尾节点都设置为NULL。 void initLinkedList(LinkedList* list) {list-head NULL;list-tail NULL; } 3. 判空 isEmpty函数判断链表是否为空即头节点是否为NULL。 bool isEmpty(const LinkedList* list) {return list-head NULL; } 4. 串尾添加 append函数向链表末尾添加一个字符节点。 void append(LinkedList* list, char data) {Node* newNode (Node*)malloc(sizeof(Node));newNode-data data;newNode-next NULL;if (isEmpty(list)) {list-head newNode;list-tail newNode;} else {list-tail-next newNode;list-tail newNode;} } 如果链表为空即头节点为NULL则将新节点设置为头节点和尾节点。如果链表不为空即头节点不为NULL则将新节点链接到尾节点的后面并将尾节点更新为新节点。 5. 打印 display函数遍历链表并打印出所有字符节点的数据。 void display(const LinkedList* list) {Node* current list-head;while (current ! NULL) {printf(%c, current-data);current current-next;}printf(\n); } 函数接受一个指向LinkedList结构体的指针作为参数然后从头节点开始遍历链表打印每个节点的数据。 6. 串长统计 length函数计算链表的长度即字符节点的个数。 int length(const LinkedList* list) {int count 0;Node* current list-head;while (current ! NULL) {count;current current-next;}return count; } 函数接受一个指向LinkedList结构体的指针作为参数然后从头节点开始遍历链表每遍历一个节点计数器加1最后返回计数器的值。 7. 查找 search函数在链表中搜索目标字符串。 int search(const LinkedList* list, const char* target) {int targetLength strlen(target);int listLength length(list);if (targetLength listLength) {printf(Error: Target string is longer than the source string.\n);return -1;}Node* current list-head;int index 0;while (current ! NULL) {if (current-data target[0]) {Node* temp current;int i 0;while (temp ! NULL temp-data target[i]) {temp temp-next;i;if (i targetLength) {return index;}}}current current-next;index;}printf(Error: Target string not found in the source string.\n);return -1; } 首先比较目标字符串的长度和链表的长度如果目标字符串比链表长说明无法找到目标字符串函数返回错误。然后从头节点开始遍历链表找到第一个与目标字符串首字符相同的节点 然后从该节点开始逐个比较字符直到找到完全匹配的目标字符串或链表遍历结束。如果找到目标字符串函数返回目标字符串在链表中的起始位置的索引如果未找到目标字符串函数返回错误。 8. 复制 copy函数将源链表中的字符复制到目标链表中。 bool copy(LinkedList* dest, const LinkedList* src) {Node* current src-head;while (current ! NULL) {append(dest, current-data);current current-next;}return true; } 函数接受两个指向LinkedList结构体的指针分别表示源链表和目标链表。通过遍历源链表的每个节点创建一个新节点并将数据复制过去然后将新节点添加到目标链表的末尾。 9. 插入 insert函数在链表的指定位置插入一个字符串。 bool insert(LinkedList* list, const char* insertStr, int pos) {int listLength length(list);int insertStrLength strlen(insertStr);if (pos 0 || pos listLength) {printf(Error: Invalid insertion position.\n);return false;}Node* current list-head;int index 0;while (current ! NULL) {if (index pos) {for (int i 0; i insertStrLength; i) {Node* newNode (Node*)malloc(sizeof(Node));newNode-data insertStr[i];newNode-next current-next;current-next newNode;current newNode;}return true;}current current-next;index;}return false; } 首先判断插入位置是否合法即索引是否在有效范围内。然后遍历链表找到插入位置的节点然后逐个创建新节点并插入到链表中。 10. 删除 delete函数从链表中删除指定位置和长度的字符。 bool delete(LinkedList* list, int pos, int len) {int listLength length(list);if (pos 0 || pos listLength) {printf(Error: Invalid deletion position.\n);return false;}if (pos len listLength) {printf(Error: Deletion length exceeds the length of the string.\n);return false;}Node* current list-head;int index 0;while (current ! NULL) {if (index pos) {Node* prev current;Node* temp current;for (int i 0; i len; i) {temp temp-next;free(prev);prev temp;}current-next temp;return true;}current current-next;index;}return false; } 首先判断删除位置是否合法然后找到删除位置的节点逐个删除指定长度的节点。 11. 串拼接 concat函数将第二个链表中的字符追加到第一个链表的末尾。的末尾。 bool concat(LinkedList* list1, const LinkedList* list2) {Node* current list2-head;while (current ! NULL) {append(list1, current-data);current current-next;}return true; } 遍历第二个链表的每个节点将节点的数据追加到第一个链表。 12. 销毁 destroy函数释放链表占用的内存。遍历链表的每个节点释放节点的内存并将头节点和尾节点设置为NULL。 void destroy(LinkedList* list) {Node* current list-head;while (current ! NULL) {Node* temp current;current current-next;free(temp);}list-head NULL;list-tail NULL; }函数遍历链表的每个节点释放节点的内存并将头节点和尾节点设置为NULL。 13. 主函数 int main() {LinkedList S;initLinkedList(S);const char target[] H;LinkedList copyStr;initLinkedList(copyStr);const char insertStr[] H;int pos 3;append(S, q);append(S, o);append(S, m);append(S, o);append(S, l);append(S, a);append(S, n);append(S, g);append(S, m);append(S, a);display(S);int searchIndex search(S, target);if (searchIndex ! -1) {printf(Target string found at index: %d\n, searchIndex);}copy(copyStr, S);display(copyStr);insert(S, insertStr, pos);display(S);delete(S, pos, strlen(insertStr));display(S);concat(S, copyStr);display(S);destroy(S);destroy(copyStr);return 0; }14. 代码整合 #include stdio.h #include stdbool.h #include stdlib.h #include string.htypedef struct Node {char data;struct Node* next; } Node;typedef struct {Node* head;Node* tail; } LinkedList;void initLinkedList(LinkedList* list) {list-head NULL;list-tail NULL; }bool isEmpty(const LinkedList* list) {return list-head NULL; }void append(LinkedList* list, char data) {Node* newNode (Node*)malloc(sizeof(Node));newNode-data data;newNode-next NULL;if (isEmpty(list)) {list-head newNode;list-tail newNode;} else {list-tail-next newNode;list-tail newNode;} }void display(const LinkedList* list) {Node* current list-head;while (current ! NULL) {printf(%c, current-data);current current-next;}printf(\n); }int length(const LinkedList* list) {int count 0;Node* current list-head;while (current ! NULL) {count;current current-next;}return count; }int search(const LinkedList* list, const char* target) {int targetLength strlen(target);int listLength length(list);if (targetLength listLength) {printf(Error: Target string is longer than the source string.\n);return -1;}Node* current list-head;int index 0;while (current ! NULL) {if (current-data target[0]) {Node* temp current;int i 0;while (temp ! NULL temp-data target[i]) {temp temp-next;i;if (i targetLength) {return index;}}}current current-next;index;}printf(Error: Target string not found in the source string.\n);return -1; }bool copy(LinkedList* dest, const LinkedList* src) {Node* current src-head;while (current ! NULL) {append(dest, current-data);current current-next;}return true; }bool insert(LinkedList* list, const char* insertStr, int pos) {int listLength length(list);int insertStrLength strlen(insertStr);if (pos 0 || pos listLength) {printf(Error: Invalid insertion position.\n);return false;}Node* current list-head;int index 0;while (current ! NULL) {if (index pos) {for (int i 0; i insertStrLength; i) {Node* newNode (Node*)malloc(sizeof(Node));newNode-data insertStr[i];newNode-next current-next;current-next newNode;current newNode;}return true;}current current-next;index;}return false; }bool delete(LinkedList* list, int pos, int len) {int listLength length(list);if (pos 0 || pos listLength) {printf(Error: Invalid deletion position.\n);return false;}if (pos len listLength) {printf(Error: Deletion length exceeds the length of the string.\n);return false;}Node* current list-head;int index 0;while (current ! NULL) {if (index pos) {Node* prev current;Node* temp current;for (int i 0; i len; i) {temp temp-next;free(prev);prev temp;}current-next temp;return true;}current current-next;index;}return false; }bool concat(LinkedList* list1, const LinkedList* list2) {Node* current list2-head;while (current ! NULL) {append(list1, current-data);current current-next;}return true; }void destroy(LinkedList* list) {Node* current list-head;while (current ! NULL) {Node* temp current;current current-next;free(temp);}list-head NULL;list-tail NULL; }int main() {LinkedList S;initLinkedList(S);const char target[] H;LinkedList copyStr;initLinkedList(copyStr);const char insertStr[] H;int pos 3;append(S, q);append(S, o);append(S, m);append(S, o);append(S, l);append(S, a);append(S, n);append(S, g);append(S, m);append(S, a);display(S);int searchIndex search(S, target);if (searchIndex ! -1) {printf(Target string found at index: %d\n, searchIndex);}copy(copyStr, S);display(copyStr);insert(S, insertStr, pos);display(S);delete(S, pos, strlen(insertStr));display(S);concat(S, copyStr);display(S);destroy(S);destroy(copyStr);return 0; }
http://www.dnsts.com.cn/news/252698.html

相关文章:

  • 中国铁路保险网站手机和pc网站
  • 网站 标准深圳优秀网站设计
  • 成都网站seo排名优化企业介绍ppt案例欣赏
  • jsp网站如何做seo四川建设银行手机银行下载官方网站下载
  • 厦门企业网站排名优化网站建设合同违约条款
  • 网站开发个人感想图片编辑器在线使用
  • 婚介所网站开发费用网站建设维护文档
  • 域名备案期间 网站访问天元建设集团有限公司信息
  • 淄博网站制作优化网站建设合同服务范围
  • 厦门房地产网站建设wordpress自动易语言
  • 南昌做购物网站的公司网站后台ftp
  • 中国公司排行榜前十名使用最佳搜索引擎优化工具
  • 影视网站建设需要学什么查看wordpress代码
  • 三合一网站是什么wordpress主题next推荐
  • 耐克网站建设策划方案画册排版设计
  • 北京网站优化和推广网站如何查看浏览量
  • 游戏开发和网站开发上海企业建站 免费
  • 有域名了怎么建站给工厂做英文外贸网站
  • 外贸网站示例网站建设前台后台设计
  • 个人网站有前途吗杭州品牌网站建设
  • 南昌个人网站建设农产品十大交易平台
  • wordpress网站资源手机网站建设语言
  • 网站开发研发合同网站建设 蜂图网络
  • 长安网站定制怎样查看一个网站的域名
  • 网站死链网站建设 深圳
  • 论述网站建设流程网站seo推广seo教程
  • 河海大学学风建设网站搭建好网站生情好域名后怎么做
  • 石家庄制作网站招聘网页设计师
  • 忂州网站建设编程入门教程
  • php网站数据库怎么上传上海seo推广平台