手撕記憶體操作函式
記憶體複製memcpy
#include<stdio.h>
#include<stdlib.h>
void* my_memcpy(void *dest, const void *src, size_t count)
{
char *tmp = dest;
const char *s = src;
while(count--){
*tmp++ = *s++ ;
}
return dest;
}
int main()
{
char* buf1 = "abcdefghijklmnopqrstuvwxyz";
char* buf2 = malloc(27);
my_memcpy(buf2,buf1,27);
printf("buf1 = %s \r\n",buf1);
printf("buf2 = %s \r\n",buf2);
free(buf2);
return 0;
}
記憶體複製,改進memcpy
#include<stdio.h>
#include<stdlib.h>
void* my_memcpy(void *dest, const void *src, size_t count)
{
char *d;
const char *s;
if((dest > (src+count)) || (dest < src)){
d = dest;
s = src;
while (count--){
*d++ = *s++;
}
}else{ /* overlap */
d = (char *)(dest + count - 1); /* offset of pointer is from 0 */
s = (char *)(src + count -1);
while (count --){
*d-- = *s--;
}
}
return dest;
}
int main()
{
char* buf1 = "abcdefghijklmnopqrstuvwxyz";
char* buf2 = malloc(27);
my_memcpy(buf2,buf1,27);
printf("buf1 = %s \r\n",buf1);
printf("buf2 = %s \r\n",buf2);
free(buf2);
return 0;
}
記憶體設定memset
#include<stdio.h>
#include<stdlib.h>
void* my_memset(void *s,int c,size_t n)
{
const unsigned char uc = c;
unsigned char *su;
for(su = s;0 < n;++su,--n){
*su = uc;
}
return s;
}
int main()
{
char* buf1 = malloc(6);
my_memset(buf1,'1',5);
buf1[5] = '\0';
printf("buf1 = %s \r\n", buf1);
free(buf1);
char* buf2 = malloc(6);
my_memset(buf2,'8',5);
buf2[5] = '\0';
printf("buf2 = %s \r\n", buf2);
free(buf2);
return 0;
}
相關文章
- 手撕字串操作函式字串函式
- 常用記憶體操作函式記憶體函式
- Delphi 的記憶體操作函式(5): 複製記憶體記憶體函式
- 共享記憶體函式記憶體函式
- 函式指標、回撥函式、動態記憶體分配、檔案操作函式指標記憶體
- Linux常用C函式—記憶體及字串操作篇(轉)Linux函式記憶體字串
- Golang記憶體分配內建函式之new函式Golang記憶體函式
- 核心記憶體分配常用函式使用記憶體函式
- windows記憶體管理和API函式Windows記憶體API函式
- 優雅手撕bind函式(面試官常問)函式面試
- 虛擬函式的記憶體佈局(上)函式記憶體
- 胡扯JS系列-記憶體模型和函式執行JS記憶體模型函式
- fork函式中的記憶體複製和共享函式記憶體
- malloc,calloc,realloc等記憶體分配函式區別記憶體函式
- PL/SQL表(oracle記憶體表)---table()函式用法SQLOracle記憶體函式
- 如何高效記憶字串函式字串函式
- 『手撕Vue-CLI』函式柯里化最佳化程式碼Vue函式
- 【C/C++】記憶體分配函式:malloc,calloc,realloc,_allocaC++記憶體函式
- c++ 虛解構函式[避免記憶體洩漏]C++函式記憶體
- 每日五個 PHP 函式記憶PHP函式
- JavaScript 專題之函式記憶JavaScript函式
- golang手動管理記憶體Golang記憶體
- 函式-PHP手冊筆記函式PHP筆記
- C語言-記憶體函式的實現(一)之memcpyC語言記憶體函式memcpy
- C語言-記憶體函式的實現(二)之memmoveC語言記憶體函式
- php實現共享記憶體程式通訊函式之_shmPHP記憶體函式
- C語言malloc()函式:動態分配記憶體空間C語言函式記憶體
- [譯]安全的WebAssembly記憶體操作Web記憶體
- 關於C中記憶體操作記憶體
- 手機記憶體都有哪些?宏旺半導體分享手機記憶體發展簡史記憶體
- C++手寫記憶體池C++記憶體
- 智慧手機記憶體完全透析記憶體
- 手撕OkHttpHTTP
- [SQL手撕]SQL
- 函式中的指標分配的記憶體怎麼釋放函式指標記憶體
- 第六章——函式(自動閉包和記憶體)函式記憶體
- 增加一個判斷記憶體變數存在的函式 (轉)記憶體變數函式
- 【Java基礎】函式引數為物件時的記憶體管理Java函式物件記憶體