c语言:有关内存函数的模拟实现

memcpy函数:

功能: 复制任意类型的数据,存储到某一数组中。

代码模拟实现功能:

cpp 复制代码
 #define  _CRT_SECURE_NO_WARNINGS
#include<stdio.h>
#include<string.h>
#include <stdio.h>
#include<assert.h>
memcpy
void* my_memcpy(void* dest, const void* src, size_t num)
{
	void* ret = dest;
	assert(dest && src);
	while (num--)
	{
		*(char*)dest = *(char*)src;
		dest = (char*)dest + 1;
		src = (char*)src + 1;
	}
	return ret;
}
int main()
{
	int arr1[10] = { 1,2,3,4,5,6,7,8,9,10 };
	my_memcpy(arr1, arr1+2, 5 * sizeof(int));
	int i = 0;
	for (i = 0; i < 10; i++)
	{
		printf("%d ", arr1[i]);// 1 2 1 2 3 4 5 8 9 10
	}

	return 0;
}

效果展示:

memmove函数:

功能:按照指定内容的大小替换掉指定内容。

代码模拟实现功能:

cpp 复制代码
#define  _CRT_SECURE_NO_WARNINGS
#include<stdio.h>
#include<string.h>
#include <stdio.h>
#include<assert.h>
memcpy

//
//
//memmove
void*  my_memove(void* dest, const void* src, size_t num)//void* 可以拷贝任意类型的数据,整型,字符,结构体
{
	void* ret = dest;
	assert(dest && src);
	if (dest < src)
	{
		//前-》后
		while (num--)
		{
			*(char*)dest = *(char*)src;//赋值,转化为char*的原因:不知道传进来的是什么类型,需要复制多少字节,因此用最小字节char*来转化
			dest = (char*)dest + 1;
			src = (char*)src + 1;//循环完一次,都找下一个字节
		}
	}
	else
	{
		//后-》前
		while (num--)
		{
			*((char*)dest+num) = *((char*)src + num);//赋值,和上面同理,但是是从后面往前赋值。
		}
	}
	return ret;
}

int main()
{
	int arr1[10] = { 1,2,3,4,5,6,7,8,9,10 };
	my_memove(arr1, arr1+2, 5 * sizeof(int));
	int i = 0;
	for (i = 0; i < 10; i++)
	{
		printf("%d ", arr1[i]);
	}
	return 0;
}

效果展示:

相关推荐
算AI1 小时前
人工智能+牙科:临床应用中的几个问题
人工智能·算法
懒羊羊大王&2 小时前
模版进阶(沉淀中)
c++
似水এ᭄往昔2 小时前
【C语言】文件操作
c语言·开发语言
owde2 小时前
顺序容器 -list双向链表
数据结构·c++·链表·list
GalaxyPokemon3 小时前
Muduo网络库实现 [九] - EventLoopThread模块
linux·服务器·c++
W_chuanqi3 小时前
安装 Microsoft Visual C++ Build Tools
开发语言·c++·microsoft
hyshhhh3 小时前
【算法岗面试题】深度学习中如何防止过拟合?
网络·人工智能·深度学习·神经网络·算法·计算机视觉
蒙奇D索大3 小时前
【数据结构】第六章启航:图论入门——从零掌握有向图、无向图与简单图
c语言·数据结构·考研·改行学it
tadus_zeng3 小时前
Windows C++ 排查死锁
c++·windows
EverestVIP3 小时前
VS中动态库(外部库)导出与使用
开发语言·c++·windows