- 博客(5)
- 收藏
- 关注
原创 链栈的基本操作
#include<stdio.h> #include<stdlib.h> #include<stdbool.h> typedef int ElemType; typedef struct node { ElemType data; struct node * pnext; }Node; typedef struct stack { ...
2019-08-08 18:41:33
176
原创 单链表的基本操作
定义结点的数据类型 #include<stdio.h> #include<stdlib.h> #define ERROR 0 #define OK 1 typedef int Status; typedef int ElemType; typedef struct LNode { ElemType data; //数据域 struct LNode *next; ...
2019-08-05 16:30:20
181
原创 顺序表习题C语言
顺序表习题 #include<stdio.h> #include<stdlib.h> #include<stdbool.h> #define LIST_INIT_SIZE 5 typedef int ElemType; typedef struct { ElemType *pbase; int length; int maxsize }...
2019-08-02 20:35:57
490
原创 顺序表的基本操作
#include<stdio.h> #include<stdlib.h> #define List_Init_Size 5 #define Increament 10 typedef int ElemType; typedef int Status; typedef struct { ElemType *base; //base指向线性表起始指针 int l...
2019-04-25 21:31:43
347
原创 Django连接SQL server并操作已有数据库
Django连接SQL server并操作已有数据库 安装 django-pyodbc-azure pip install django-pyodbc-azure 修改setting.py中的数据库配置 DATABASES = { ‘default’: { ‘ENGINE’: ‘sql_server.pyodbc’, ‘NAME’: ‘’, #输入数据库名称 ‘USER’:’’, ...
2019-02-24 23:22:06
2492
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人
RSS订阅