09 2017 档案

摘要:``` #ifndef LINKLIST_H_INCLUDED #define LINKLIST_H_INCLUDED #include "ds.h" #ifndef ElemType #define ElemType int #define ELEMTYPE_TAG #endif typedef struct LNode { ElemType data; struct ... 阅读全文
posted @ 2017-09-22 22:33 松源兄 阅读(153) 评论(0) 推荐(0)
摘要:class Point{ private double x; private double y; public double getDis(Point point){ return Math.sqrt(Math.sqrt((point.x this.x) (point.x this.x)+(poin 阅读全文
posted @ 2017-09-22 22:06 松源兄 阅读(197) 评论(0) 推荐(0)
摘要:``` ifndef SQLIST_H_INCLUDED define SQLIST_H_INCLUDED include "ds.h" //for Status,OK ... ifndef ElemType define ElemType int define ELEMTYPE_TAG endif 阅读全文
posted @ 2017-09-13 18:40 松源兄 阅读(240) 评论(0) 推荐(0)
摘要:``` //创建表 create table Student( sname nchar(10) ) //插入行 insert into Student values('zhang') //插入行中指定的元素 insert into Student(sname) values('zhang') //根据条件删除行 delete from Student where sname='zha... 阅读全文
posted @ 2017-09-12 11:25 松源兄 阅读(151) 评论(0) 推荐(0)
摘要:数列的极限 定义证明 理解即是,不论你给定的正数有小,总能找到一个分界点第N项,在N向a逼近方向,存在无数个n项,使得x与a的距离小于这个正数 |这个不等式成立。那么就存在极限。 在证明数列极限存在时,我们只要找到使 成立的条件,推出使 成立的不等式,即可根据定义求解。 在求解证明时,若能知道 小于 阅读全文
posted @ 2017-09-09 19:13 松源兄 阅读(272) 评论(0) 推荐(0)
摘要:public class test2{ public static void main(String arg[]) { for(int i=100;izuida){ zuida=fangzhen[i]; zuida_index=i;} for(int i=0;i 阅读全文
posted @ 2017-09-09 15:50 松源兄 阅读(214) 评论(0) 推荐(0)