首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴geruichen的代码贴全部
#include <stdio.h>
#include<stdlib.h>
#include<time.h>
#define DL 3
#define STR(n)#n
#define DIGIT_LEN_STR(n) "%" STR(n) "d"
typedef struct Node{
    int data;
    struct Node *next;
}Node;

Node *getNewNode(int val)
......................
阅读全部 | 2023年9月9日 16:02
#include <stdio.h>
#include <stdlib.h>
#include<time.h>

typedef struct vector{
 int size,count;
 int *data;
} vector;/*结构定义*/
vector *getNewVector(int n){//顺序表的初始化操作//
    vector *p=(vector*)malloc(sizeof(vector));//开辟顺序表空间//
    p->size=n;
    p->count=0;
......................
阅读全部 | 2023年9月7日 20:55
#include <stdio.h>
#include <stdlib.h>


typedef struct vector{
 int size,count;
 int *data;
} vector;
vector *getNewVector(int n){
    vector *p=(vector*)malloc(sizeof(vector));
    p->size=n;
    p->count=0;
......................
阅读全部 | 2023年9月4日 15:08
1
geruichen