實現一些字串操作標準庫函式、解決一些字串問題
一、實現字串操作標準庫函式
(1)、strcpy、strncpy、memmove、memcpy、memset、strlen、strncat 的實現
C++ Code
1
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 |
// The strcpy() function copies the string pointed to by src, including the terminating null byte ('\0'), to the buffer
// pointed to by dest. The strings may not overlap, and the destination string dest must be large enough to receive thecopy. char *strcpy(char *dest, const char *src) { assert((src != NULL) && (dest != NULL)); size_t i; for (i = 0; src[i] != '\0'; i++) dest[i] = src[i]; dest[i] = '\0'; return dest; } // The strncpy() function is similar, except that at most n bytes of src are copied. Warning: If there is no null byte among the first n bytes of src, // the string placed in dest will not be null-terminated. If the length of src is less than n, strncpy() pads the remainder of dest with null bytes. char *strncpy(char *dest, const char *src, size_t n) { assert((src != NULL) && (dest != NULL)); size_t i; for (i = 0; i < n && src[i] != '\0'; i++) dest[i] = src[i]; for (; i < n; i++) dest[i] = '\0'; return dest; }
SQL Code
/* 在32位的x86平臺上,每次拷貝1個位元組需要一條指令,每次拷貝4個位元組也只需要一條指 * 令,memcpy函式的實現儘可能4個位元組4個位元組地拷貝 */ void *memcpy(void *dest, const void *src, size_t n) { assert((src != NULL) && (dest != NULL)); char *d = dest; const char *s = src; int *di; const int *si; int r = n % 4; while (r--) *d++ = *s++; di = (int *)d; si = (const int *)s; n /= 4; while (n--) *di++ = *si++; return dest; } |
C++ Code
1
2 3 4 5 6 7 |
size_t strlen(const char *p)
{ assert(p != NULL);
size_t size = 0; while (*p++ != '\0') ++size; return size; } |
C++ Code
1
2 3 4 5 6 7 8 9 10 11 |
char *strncat(char *dest, const char *src, size_t n)
{ size_t dest_len = strlen(dest); size_t i; for (i = 0 ; i < n && src[i] != '\0' ; i++) dest[dest_len + i] = src[i]; dest[dest_len + i] = '\0'; return dest; } |
不用臨時空間的memmove實現:
C++ Code
1
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
//src可以不保留
void *memmove(void *dst, const void *src, size_t count) { byte *pbTo = (byte *)dst; byte *pbFrom = (byte *)src; assert(dst != NULL && src != NULL);//不能存在空指標 if (dst <= src || pbTo >= pbFrom + count)// { while (count-- > 0) { *pbTo++ = *pbFrom++; //按遞增拷貝 } } else // { pbTo = pbTo + count - 1; //overlap的情況,從高位地址向低位拷貝 pbFrom = pbFrom + count - 1; while (count-- > 0) { *pbTo-- = *pbFrom--; //按遞減拷貝 } } return dst; } |
memset的實現:
C++ Code
1
2 3 4 5 6 7 8 |
void *memset(void *buffer, int c, int count)
{ char *buffer_p = (char *)buffer; assert(buffer != NULL); while(count-- > 0) *buffer_p++ = (char)c; return buffer; } |
二、解決字串問題
(1)、將單詞之間出現一個或多個連續的空白字元都壓縮為1個。
C++ Code
1
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
//編一個函式,輸入一個字串,要求做一個新字串,把其中所有的一個或多個連續的空白字元都壓縮為一個空格。這裡所說的空白包括空格、'\t'、'\n'、'\r'。
char *shrink_space(char *dest, const char *src, size_t n) { assert((src != NULL) && (dest != NULL)); size_t i, j; dest[0] = src[0]; for (i = 1, j = 1; src[i] != '\0'; i++, j++) { if (src[i] == '\t' || src[i] == '\n' || src[i] == '\r' || src[i] == ' ') if (src[i - 1] != '\t' && src[i - 1] != '\n' && src[i - 1] != '\r' && src[i - 1] != ' ') dest[j] = ' '; else j--; else dest[j] = src[i]; } dest[j] = '\0'; return dest; } |
(2)、解析URL 中的路徑和查詢字串。?
號後面是查詢字串,由 “key=value”形式的鍵值對組成,以&隔開。
C++ Code
1
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 |
/*************************************************************************
> File Name: find_url_token.c > Author: Simba > Mail: dameng34@163.com > Created Time: Sat 26 Jan 2013 04:05:32 PM CST ************************************************************************/ #include<stdio.h> #include<string.h> #include<stdlib.h> #define N 10 typedef struct { char *tokens[N]; int count; } unit_t; void find_url_token(char str[], const char tok[], unit_t *ptr) { int i; char *token = NULL; char *saveptr = NULL; ptr->count = 0; const char *needle = "://"; if (strstr(str, needle)) { for (i = 0; ; str = NULL, i++) { token = strtok_r(str, tok, &saveptr); if (token == NULL) break; else { ptr->tokens[i] = token; ptr->count++; } } } } int main(void) { /* 不能定義為char *url = "..."; 因為此時是定義一個指向字串字面值(位於.rodata段)的指標,而 呼叫strtok_r函式會修改這個字串,執行時會產生段錯誤 */ char url[] = "http://www.google.cn/search?complete=1&hl=zh-CN&ie=GB2312&q=linux&meta="; /* 給url初始化用的這個字串並沒有分配在.rodata段,而是直接寫在指令裡了, * 執行程式時通過movl 指令把字串寫到棧上,這就是url的儲存空間*/ unit_t *ptr = malloc(sizeof(unit_t)); find_url_token(url, "?&", ptr); int i; for (i = 0; i < ptr->count; i++) printf("%s\n", ptr->tokens[i]); free(ptr); return 0; } |
(3)、去除\r\n,去除左右空白字元
C++ Code
1
2 3 4 5 6 7 |
void str_trim_crlf(char *str)
{ char *p = &str[strlen(str) - 1]; while (*p == '\r' || *p == '\n') *p-- = '\0'; } |
C++ Code
1
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
void AllTrim( char *str )
{ char *head, *tail; if ( str == NULL ) return; for( head = str; *head == ' ' || *head == '\t'; head ++ ); for( tail = str + strlen(str) - 1; (*tail == ' ' || *tail == '\t' ) && tail >= head; tail -- ); while( head <= tail ) *str ++ = *head ++; *str = 0; } |
(4)、判斷字串是否為迴文
C++ Code
1
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
// 判斷字串是否為迴文
bool isSysmmetry(const char *src) { assert(src != NULL); int len = strlen(src); assert(len != 0); const char *tmp = src + len - 1; int i; for (i = 0; i < len / 2; i++) { if (*src++ != *tmp--) break; } if (i == len / 2) return true; else return false; } |
(5)、google筆試:編碼實現求給定字串(全為小寫英文字母)的最小後繼,如 “abc” 的最小後繼為“abd”, "dhz" 的最小後繼為“di"。
C++ Code
1
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
int MinNextStr(const char *src, char *&minnext)
{ int srclen = strlen(src); minnext = (char *)malloc((srclen + 1) * sizeof(char)); if (minnext == NULL) return -1; strcpy(minnext, src); int i = srclen - 1; while (i >= 0) { minnext[i]++; if (minnext[i] <= 'z') break; i--; } if (i < 0) return 0; else { minnext[++i] = '\0'; return 1; } } |
如果把給定字串全為小寫英文字母改為大小寫英文字母,則只要把 第13行改為:
if (minnext[i] <= 'z' && minnext[i] >= 'a' || minnext[i] <= 'Z');
(6)、中興:編碼實現字串右移n位,如“diopheg” 右移2位為“egdioph”。
C++ Code
1
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 |
bool RightMoveStr(char *src, int n)
{ int len = strlen(src); int mov = n % len; char *rstr = (char *)malloc((mov + 1) * sizeof(char)); if (rstr == NULL) return false; int i = 0; while (i < mov) { rstr[i] = src[len - mov + i]; i++; } rstr[i] = '\0'; i = len - mov - 1; while (i >= 0) { src[i + mov] = src[i]; i--; } i = 0; while (i < mov) { src[i] = rstr[i]; i++; } free(rstr); return true; } bool RightMove(char *src, char *&ssrc, int n) { int len = strlen(src); ssrc = (char *)malloc(sizeof(char) * (len + 1)); if (ssrc == NULL) return false; n = n % len; char *tmp = src + len - n; strcpy(ssrc, tmp); strncat(ssrc, src, len - n); return true; } |
更巧妙的方法:
C++ Code
1
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
void reverse(char* str, int left, int right)
{ char tmp; while (left < right) { tmp = str[left]; str[left++] = str[right]; str[right--] = tmp; } } void rightmove(char* str, int k) { n = strlen(str); k = k % n; reverse(str, 0, n-k-1); reverse(str, n-k, n-1); reverse(str, 0, n-1); } |
(7)、新郵通:字串反轉:給定字串“we;tonight;you;”,編碼實現輸出”ew;thginot;uoy;“
C++ Code
1
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
void ReverseStr(char *src)
{ int len = strlen(src); int i = 0; int first = 0; int end = 0; while (i < len) { if (src[i] == ';') { end = i - 1; while (first < end) { char tmp = src[first]; src[first] = src[end]; src[end] = tmp; first++; end--; } first = i + 1; } i++; } } |
如果給定字串末尾沒有';',只需要修改9,10,11行
C++ Code
1
2 3 4 5 6 7 8 |
if (src[i] == ';' || i == len - 1)
{ if (src[i] == ';') end = i - 1; else end = i; while... } |
(8)、不使用區域性變數實現strlen、兩數交換
C++ Code
1
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
#define swap(a,b) \
{ assert(sizeof(a)==sizeof(b)); char tempBuf[sizeof(a)]; memcpy(tempBuf,&a,sizeof(a)); memcpy(&a,&b,sizeof(b)); memcpy(&b,tempBuf,sizeof(b)); } #define swap(a, b) \ do { typeof(a) __tmp = (a); (a) = (b); (b) = __tmp; } while (0) // typeof 是gcc支援,iso c支援__typeof__ int mstrlen(char *p) { return ToEnd(p)-p; } char * ToEnd(char * p) { while(*p != '\0') p++; return p; } |
相關文章
- 字串操作函式字串函式
- C++ 字串 cctype 標頭檔案標準庫處理函式C++字串函式
- 轉 Lua標準庫: table函式, 數學函式, 字串函式/格式化/配對,函式字串
- Sql字串操作函式SQL字串函式
- 一些關於VB中字串操作的問題和回答 (轉)字串
- 有關字串的一些好用的小函式字串函式
- Js字串操作函式大全JS字串函式
- 手撕字串操作函式字串函式
- c++一些常見的內建函式(字串)C++函式字串
- T-SQL——函式——字串操作函式SQL函式字串
- PHP內建字串函式實現PHP字串函式
- 字串相關函式的實現字串函式
- Lesson12——NumPy 字串函式之 Part1:字串操作函式字串函式
- Python字串操作、函式整理Python字串函式
- Python字串操作常用函式Python字串函式
- c++字串查詢函式實現C++字串函式
- 【峰】ASP.NET中的一些字串操作ASP.NET字串
- C語言的本質(22)——C標準庫之字串操作C語言字串
- db2資料庫的操作以及一些常見問題解決DB2資料庫
- C++ 標準庫-字串 string 類C++字串
- [MSSQL]實現SQL Server中的切割字串SplitString標量函式SQLServer字串函式
- escape函式處理帶加號字串問題函式字串
- 模擬實現字串函式strlen , strcpy ,strcmp字串函式
- Sql Server函式全解(1):字串函式SQLServer函式字串
- Sql Server函式全解(一)字串函式SQLServer函式字串
- MySQL 字串函式:字串擷取MySql字串函式
- C標準庫之檔案目錄操作函式——_tempnam函式
- Python學習-字串函式操作1Python字串函式
- Python學習-字串函式操作3Python字串函式
- 部分liunx下字串操作函式(轉載)字串函式
- Delphi字串指標操作字串指標
- 標準 DateTime 格式字串字串
- 解決split無法得到空字串問題字串
- 微軟實現字串函式的一個BUG (轉)微軟字串函式
- 字串函式 fprintf ()字串函式
- 字串函式 htmlentities ()字串函式HTML
- 字串函式 htmlspecialchars ()字串函式HTML
- 字串函式 implode ()字串函式