05 2019 档案
摘要:大二下实训课结业作业,想着就爬个工作信息,原本是要用python的,后面想想就用java试试看, java就自学了一个月左右,想要锻炼一下自己面向对象的思想等等的, 然后网上转了一圈,拉钩什么的是动态生成的网页,51job是静态网页,比较方便,就决定爬51job了。 参考https://blog.c
阅读全文
摘要:#include <stdio.h> #include <stdlib.h> typedef int ElemType; typedef struct DLNode{ ElemType data; struct DLNode *next; struct DLNode *prior; }DLNode;
阅读全文
摘要:#include <stdio.h> #include <stdlib.h> #define MAXSIZE 6 typedef int QElemType; typedef struct { QElemType *base; int front; int rear; }SqQueue; SqQue
阅读全文
摘要:#include <stdio.h> #include <stdlib.h> typedef int QElemType; typedef struct QNode{ QElemType data; struct QNode *next; }QNode; typedef struct{ QNode
阅读全文
摘要:#include <stdio.h> #include <stdlib.h> typedef int ElemType; typedef struct StackNode{ ElemType data; struct StackNode *next; }StackNode; StackNode *I
阅读全文
摘要:#include <stdio.h> #include <stdlib.h> #define MAXSIZE 100 typedef int SElemType; typedef struct { SElemType *base; SElemType *top; int stackSize; }Sq
阅读全文
摘要:#include <stdio.h> #include <stdlib.h> typedef int ElemType; typedef struct LNode{ ElemType data; struct LNode *next; }LNode; LNode *InitList(LNode *L
阅读全文
摘要:1 #include <stdio.h> 2 #include <stdlib.h> 3 #define MAXSIZE 100 4 5 typedef int ElemType; 6 7 typedef struct{ 8 ElemType data[MAXSIZE]; 9 int length;
阅读全文