摘要:
package top.lostyou.servlet; import com.sun.scenario.effect.impl.sw.sse.SSEBlend_SRC_OUTPeer; import javax.servlet.ServletException; import javax.serv 阅读全文
摘要:
<%@ page contentType="text/html;charset=UTF-8" language="java" %> <html> <head> <title>Welcome CheckID System</title> <style type="text/css"> .st1{ co 阅读全文
摘要:
#include <stdio.h> #include <stdlib.h> #include "test_顺序表声明.h" /* run this program using the console pauser or add your own getch, system("pause") or 阅读全文
摘要:
#include<stdio.h> #include<stdlib.h> typedef struct { float coef; int expn; struct Polynomial* next; }Polynomial; //建立多项式 Polynomial *CreatePoly() { P 阅读全文
摘要:
#include<stdio.h> #include<stdlib.h> #define MAXSIZE 20 //循环队列 typedef int datatype; typedef struct { datatype data[MAXSIZE];//队列的数据存储区 int front,rear 阅读全文
摘要:
#include<stdio.h> #include<stdlib.h> #define MAXSIZE 20 //链栈 typedef int Elemtype; typedef struct Stacknode { Elemtype data; struct Stacknode *next; i 阅读全文
摘要:
#include<stdio.h> #include<stdlib.h> #define MAXSIZE 20 typedef int datetype; typedef struct { datetype date[MAXSIZE]; int top; }SeqStack; SeqStack *s 阅读全文
摘要:
#include<stdio.h> #include<stdlib.h> #define MAXSIZE 20 typedef int ElemType; typedef struct { ElemType elem[MAXSIZE]; int length; }SeqList;//定义一个顺序表 阅读全文
摘要:
#include<stdio.h> #include<stdlib.h> typedef int ElemType; typedef struct node { ElemType date;//数据域 struct node *next;//指针域 }LNode,*LinkList; //用尾插法建 阅读全文