🎨 修改
This commit is contained in:
parent
fec07bb8d0
commit
92b481c823
|
@ -36,7 +36,7 @@ function bubble_sort($arr)
|
||||||
- 比较 64 和 90,64 < 90,不需要交换,这一轮结束
|
- 比较 64 和 90,64 < 90,不需要交换,这一轮结束
|
||||||
|
|
||||||
第一轮冒泡后,最大的数 90 被“冒泡”到了数组的最后一位。
|
第一轮冒泡后,最大的数 90 被“冒泡”到了数组的最后一位。
|
||||||
|
<!--more-->
|
||||||
2. N轮冒泡:
|
2. N轮冒泡:
|
||||||
|
|
||||||
对除了最后一个元素之外的所有元素进行上述相同的比较和交换操作,这一轮结束后,次大的数 64 被放到了倒数第二位。重复上述过程,每一轮都将未排序部分的最大值“冒泡”到已排序部分的末尾。每一轮冒泡都会使未排序部分的长度减少 1当整个数组遍历一遍而没有任何元素交换时,表示数组已经排序完成。
|
对除了最后一个元素之外的所有元素进行上述相同的比较和交换操作,这一轮结束后,次大的数 64 被放到了倒数第二位。重复上述过程,每一轮都将未排序部分的最大值“冒泡”到已排序部分的末尾。每一轮冒泡都会使未排序部分的长度减少 1当整个数组遍历一遍而没有任何元素交换时,表示数组已经排序完成。
|
||||||
|
|
|
@ -7,77 +7,102 @@ tags:
|
||||||
|
|
||||||
语言实现类似php的array数据类型!
|
语言实现类似php的array数据类型!
|
||||||
|
|
||||||
|
<!--more-->
|
||||||
```c
|
```c
|
||||||
|
#include <assert.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
|
//元素类型
|
||||||
|
typedef enum elementTypes { String, Inter } elementType;
|
||||||
|
|
||||||
|
// 定义动态数组元素结构体
|
||||||
|
typedef struct {
|
||||||
|
void *data;
|
||||||
|
elementType type;
|
||||||
|
} Element;
|
||||||
|
|
||||||
|
|
||||||
// 定义动态数组结构体
|
// 定义动态数组结构体
|
||||||
typedef struct {
|
typedef struct {
|
||||||
void** data; // 数据
|
Element **data; // 数据
|
||||||
int size; // 大小
|
size_t size; // 大小
|
||||||
int capacity; // 容量
|
size_t capacity; // 容量
|
||||||
} Array;
|
} Array;
|
||||||
|
|
||||||
// 初始化动态数组
|
// 初始化动态数组
|
||||||
void initArray(Array* arr, int capacity) {
|
void init_array(Array *arr, int capacity) {
|
||||||
arr->data = (void**)malloc(capacity * sizeof(void*));
|
arr->data = (Element **) malloc(capacity * sizeof(Element *));
|
||||||
arr->size = 0;
|
arr->size = 0;
|
||||||
arr->capacity = capacity;
|
arr->capacity = capacity;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// 释放动态数组
|
// 释放动态数组
|
||||||
void freeArray(Array* arr) {
|
void free_array(Array *arr) {
|
||||||
free(arr->data);
|
free(arr->data);
|
||||||
arr->size = 0;
|
arr->size = 0;
|
||||||
arr->capacity = 0;
|
arr->capacity = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
// 向动态数组中添加一个元素
|
// 向动态数组中添加一个元素
|
||||||
void push(Array* arr, void* element) {
|
void push(Array *arr, Element *element) {
|
||||||
if (arr->size == arr->capacity) {
|
if (arr->size == arr->capacity) {
|
||||||
arr->capacity *= 2;
|
arr->capacity *= 2;
|
||||||
arr->data = (void**)realloc(arr->data, arr->capacity * sizeof(void*));
|
arr->data = (Element **) realloc(arr->data, arr->capacity * sizeof(Element *));
|
||||||
}
|
}
|
||||||
arr->data[arr->size++] = element;
|
arr->data[arr->size++] = element;
|
||||||
}
|
}
|
||||||
<!--more-->
|
|
||||||
|
|
||||||
// 从动态数组中删除一个元素
|
// 从动态数组中删除一个元素
|
||||||
void removeElement(Array* arr, int index) {
|
void remove_element(Array *arr, size_t index) {
|
||||||
if (index < 0 || index >= arr->size) {
|
assert(index < arr->size); // 确保索引有效
|
||||||
return;
|
|
||||||
}
|
|
||||||
arr->size--;
|
arr->size--;
|
||||||
for (int i = index; i < arr->size; i++) {
|
memmove(&arr->data[index], &arr->data[index + 1], (arr->size - index) * sizeof(Element *));
|
||||||
arr->data[i] = arr->data[i + 1];
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// 根据索引从动态数组中获取一个元素
|
// 根据索引从动态数组中获取一个元素
|
||||||
void* get(Array* arr, int index) {
|
Element *get(Array *arr, size_t index) {
|
||||||
if (index < 0 || index >= arr->size) {
|
assert(index < arr->size); // 确保索引有效
|
||||||
return NULL;
|
|
||||||
}
|
|
||||||
return arr->data[index];
|
return arr->data[index];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void print_array(Array arr) {
|
||||||
|
for (int i = 0; i < arr.size; i++) {
|
||||||
|
Element *el = get(&arr, i);
|
||||||
|
switch (el->type) {
|
||||||
|
case String:
|
||||||
|
printf("%s ", (char *) el->data);
|
||||||
|
break;
|
||||||
|
case Inter:
|
||||||
|
printf("%d ", *(int *) el->data);
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
printf("Unknown Type\n");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
int main() {
|
int main() {
|
||||||
Array arr;
|
Array arr;
|
||||||
initArray(&arr, 10);
|
init_array(&arr, 10);
|
||||||
int a = 10, b = 20, c = 30;
|
push(&arr, &(Element){.data = malloc(sizeof(int)), .type = Inter});
|
||||||
push(&arr, &a);
|
*((int *)arr.data[0]->data) = 10;
|
||||||
push(&arr, &b);
|
push(&arr, &(Element){.data = malloc(sizeof(int)), .type = Inter});
|
||||||
push(&arr, &c);
|
*((int *)arr.data[1]->data) = 20;
|
||||||
for (int i = 0; i < arr.size; i++) {
|
push(&arr, &(Element){.data = malloc(sizeof(int)), .type = Inter});
|
||||||
printf("%d ", *((int*)get(&arr, i)));
|
*((int *)arr.data[2]->data) = 30;
|
||||||
}
|
push(&arr, &(Element){.data = strdup("zyimm"), .type = String});
|
||||||
|
print_array(arr);
|
||||||
printf("\n");
|
printf("\n");
|
||||||
removeElement(&arr, 1);
|
remove_element(&arr, 0);
|
||||||
for (int i = 0; i < arr.size; i++) {
|
print_array(arr);
|
||||||
printf("%d ", *((int*)get(&arr, i)));
|
|
||||||
}
|
|
||||||
printf("\n");
|
printf("\n");
|
||||||
freeArray(&arr);
|
free_array(&arr);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user