假設串S1 = "I come from Beijing",S2 = "Chongqing" ,Sub = "America". 利用串的基本操作,如果串的賦值、串的插入、串的刪除、串的替換、對上面
標頭檔案:函式的宣告
#include <stdio.h>
#include <stdlib.h>
#define MAXSIZE 60
typedef struct
{
char str[MAXSIZE];
int length;
}SeqString;
void StrAssign(SeqString *S,char cstr[]);//串的賦值操作
int StrEmpty(SeqString S);//判斷串是否為空
int StrLength(SeqString S);//求串的長度操作
void StrCopy(SeqString *T,SeqString S);//串的複製操作
int StrCompare(SeqString S,SeqString T);//串的比較操作
int StrInsert(SeqString *S,int pos,SeqString T);//串的插入操作
int StrDelete(SeqString *S,int pos,int len);//串的刪除操作
int StrConcat(SeqString *T,SeqString S);//串的連線操作
int SubString(SeqString *Sub,SeqString S,int poos,int len);//擷取子串操作
int StrReplace(SeqString *S,SeqString T,SeqString V);//串的替換操作
int StrIndex(SeqString S,int pos,SeqString T);//串的定位操作
void StrClear(SeqString *S);//清空串操作
void StrPrint(SeqString S);//串的輸出宣告
函式的定義
#include "順序串.h"
void StrAssign(SeqString *S,char cstr[])//串的賦值操作(將常量cstr中的字元賦值給串S)
{
int i = 0;
for(i = 0;cstr[i]!='\0';i++)
{
S->str[i] = cstr[i];
}
S->length = i;
}
int StrEmpty(SeqString S)//判斷串是否為空
{
if(S.length == 0)
{
return 1;
}
else
{
return 0;
}
}
int StrLength(SeqString S)//求串的長度操作
{
return S.length ;
}
void StrCopy(SeqString *T,SeqString S)//串的複製操作(將串S中的每一個字元賦給T)
{
int i;
for(i = 0;i < S.length ;i++)
{
T->str[i] = S.str[i];
}
T->length = S.length ;
}
int StrCompare(SeqString S,SeqString T)//串的比較操作
{
int i;
for(i = 0;i < S.length&&i < T.length ;i++)//比較兩個串中的字元
{
if(S.str[i] != T.str[i])//如果出現字元不同,則返回兩個字元的差值
{
return (S.str[i]-T.str[i]);
}
}
return (S.length - T.length);//如果比較完畢,返回兩個字串的長度的差值
}
int StrInsert(SeqString *S,int pos,SeqString T)//串的插入操作(在串S的pos個位置插入串T)
{
int i;
if(pos < 0 || pos-1 > S->length)
{
printf("插入位置不正確\n");
return 0;
}
if(S->length + T.length <= MAXSIZE)//子串完整插入到串中
{
//在插入子串T前,將S中的pos後的字元向後移動len個位置
for(i = S->length+T.length-1;i >= pos+T.length-1;i--)
{
S->str[i] = S->str[i-T.length];
}
//將串插入到S中
for(i = 0;i < T.length ;i++)
{
S->str[pos+i-1] = T.str[i];
}
S->length = S->length +T.length ;
return 1;
}
else if(pos +T.length <= MAXSIZE)//子串完全插入S中,但是S中的字元會被截斷
{
for(i = MAXSIZE-1;i > T.length +pos-1;i--)
{
S->str[i] = S->str[i-T.length];
}
for(i = 0;i < T.length ;i++)
{
S->str[i+pos-1] = T.str[i];
}
S->length = MAXSIZE;
return 0;
}
else//子串T不能完全插入到S中,T將會有字元被捨棄
{
for(i = 0;i < MAXSIZE-pos;i++)
{
S->str[i+pos-1] = T.str[i];
}
S->length = MAXSIZE;
return 0;
}
}
int StrDelete(SeqString *S,int pos,int len)//串的刪除操作(在串S中刪除pos開始的len個字元,然後將後面的字元向前移動)
{
int i,flag;
if(pos < 0 || len < 0 || pos+len-1 > S->length)
{
printf("刪除位置不正確,引數len不合法\n");
flag = 0;
}
else
{
for(i = pos+len;i <= S->length-1;i++)
{
S->str[i-len] = S->str[i];
}
S->length = S->length -len;//修改串S的長度
flag = 1;
}
return flag;
}
int StrConcat(SeqString *T,SeqString S)//串的連線操作(將串S連線在串T的後面)
{
int i,flag;
if(T->length +S.length <= MAXSIZE)
{
for(i = T->length ;i < T->length +S.length ;i++)
{
T->str[i] = S.str[i-T->length];
}
T->length = T->length +S.length ;
flag = 1;
}
else if(T->length < MAXSIZE)
{
for(i = T->length ;i < MAXSIZE;i++)
{
T->str[i] = S.str[i-T->length];
}
T->length = MAXSIZE;
flag = 0;
}
return flag;
}
int SubString(SeqString *Sub,SeqString S,int pos,int len)//擷取子串操作(擷取串S中從第pos個字元開始,長度為len的連續字元,並賦值給Sub)
{
int i;
if(pos < 0 || len < 0 || pos+len-1 > S.length)
{
printf("引數pos和len不合法\n");
return 0;
}
else
{
for(i = 0;i < len;i++)
{
Sub->str[i] = S.str[i+pos-1];
}
Sub->length = len;
return 1;
}
}
int StrIndex(SeqString S,int pos,SeqString T)//串的定位操作(在主串S中的第pos個位置開始查詢子串T,如果主串S中存在與串T值相等的子串,返回子串在主串第pos個字元後第一次出現的位置)
{
int i,j;
if(StrEmpty(T))
{
return 0;
}
i = pos;
j = 0;
while(i < S.length && j < T.length)
{
if(S.str[i] == T.str[j])
{
i++;
j++;
}
else//如果當前對應位置的字元不相等,則從串S的下一個字元開始,從T的第0個字元開始比較
{
i = i-j+1;
j = 0;
}
}
if(j >= T.length)//如果在串S中找到串T,則返回子串T在主串S中的位置
{
return i-j+1;
}
else
{
return -1;
}
}
int StrReplace(SeqString *S,SeqString T,SeqString V)//串的替換操作(如果串S中存在子串T,則用V替換串S中的所有子串T)
{
int flag;
int i = 0;
if(StrEmpty(T))
{
return 0;
}
while(i)
{
i = StrIndex(*S,i,T);//利用串的定位操作在串S中查詢T的位置
if(i)
{
StrDelete(S,i,StrLength(T));//如果找到子串T,則將S中的串T刪除
flag = StrInsert(S,i,V);//將V插入
if(!flag)
{
return 0;
}
i += StrLength(V);
}
}
return 1;
}
void StrClear(SeqString *S)//清空串操作
{
S->length = 0;
}
void StrPrint(SeqString S)//串的輸出宣告
{
int i;
for(i = 0;i < S.length ;i++)
{
printf("%c",S.str[i]);
}
printf("\n");
}
函式的應用
#include "順序串.h"
/*假設串S1 = "I come from Beijing",S2 = "Chongqing" ,Sub = "America".
利用串的基本操作,如果串的賦值、串的插入、串的刪除、串的替換、對上面
的串進行操作*/
int main(void)
{
SeqString S1,S2,Sub;
char ch[MAXSIZE];
printf("請輸入第一個字串:\n");
gets(ch);
StrAssign(&S1,ch);
printf("輸出串S1:");
StrPrint(S1);
printf("請輸入第二個字串:\n");
gets(ch);
StrAssign(&S2,ch);
printf("輸出串S2:");
StrPrint(S2);
printf("將串S2插入到S1的第13個位置:\n");
StrInsert(&S1,13,S2);
StrPrint(S1);
printf("將串S1中的第22個位置起的7個字元刪除:\n");
StrDelete(&S1,22,7);
StrPrint(S1);
printf("將串S2中的第6個位置起的4個字元取出放進Sub中:\n");
SubString(&Sub,S2,6,4);
StrPrint(Sub);
printf("將串Sub賦值為America:\n");
StrAssign(&Sub,"America");
printf("將串S1中的串S2用Sub取代:\n");
StrReplace(&S1,S2,Sub);
StrPrint(S1);
return 0;
}
相關文章
- 串的基本運算實現-加密解密串加密解密
- 刪除字串中的子串字串
- iOS 鑰匙串的基本使用iOS
- 變數子串的常用操作變數
- 子串查詢;及排列子串分析
- 串的簡單處理
- Java 的字串和子串Java字串
- 子串位置
- [leetcode 30 串聯所有單詞的子串 10ms]LeetCode
- 串知識的重新回顧
- 一串字串的翻轉字串
- 藍橋杯-串的處理
- 資料庫的連線串資料庫
- oracle串物件相關的bugOracle物件
- 子串查詢
- 查詢子串
- C# 格式串C#
- 最長子串
- POJ 3294 Life Forms(字尾陣列求k個串的最長子串)ORM陣列
- (迴文串)leetcode各種迴文串問題LeetCode
- 順序結構儲存串實現串萬用字元匹配的演算法字元演算法
- [LeetCode] Substring with Concatenation of All Words 串聯所有單詞的子串LeetCode
- 字串操作>靜態串String字串
- Python找回文子串的方法Python
- hadoop的mapreduce串聯執行Hadoop
- 【練習】串的堆分配實現
- 【練習】塊鏈串的實現
- 串的堆分配表示與實現
- 串的順序儲存結構
- 資料結構---串資料結構
- 四種命名介紹:駝峰、帕斯卡、蛇形、烤串(肉串)
- oracle連線串的一種寫法Oracle
- Java中空串和null串的區別JavaNull
- 兩個字串的最長公共子串字串
- c++ : 獲得string的子串C++
- 無重複字元的最長子串字元
- poj3080-kmp+列舉子串 求最長公共子串KMP
- 獲取json串裡的某個屬性值JSON