摘要: #include <stdio.h> #include <malloc.h> int main() { int **a; int i, j; a = (int**)malloc(sizeof(int*)*3);//为二维数组分配3行 for (i = 0; i < 3; ++i){//为每列分配4个 阅读全文
posted @ 2020-03-31 18:57 CurrentlyMe 阅读(1067) 评论(0) 推荐(0)
摘要: 队列 阅读全文
posted @ 2020-03-18 16:40 CurrentlyMe 阅读(111) 评论(0) 推荐(0)
摘要: 链表常用操作 阅读全文
posted @ 2020-03-18 16:15 CurrentlyMe 阅读(96) 评论(0) 推荐(0)
摘要: 一、定义 二、常用实现及操作 阅读全文
posted @ 2020-03-18 14:31 CurrentlyMe 阅读(98) 评论(1) 推荐(0)