You are on page 1of 5

100

SSLSET

SQLJoin

SSLSecure Sockets Layer()SSL


secret key
()SSLSET20

()Netscape
RC4RSAMD5RC4RSA
MD5
1.RC4

2.RSA
RC4
(Public Key)(Private Key)
(Certificate Agent, CA)

3.MD5
RC4RSA
MD5(Message Digest)

SSLRC4
RSARSA

(Private Key)(Secrete Key)


MD5

()SET(Secure Electronic Transactions)VISAMastercard

SSL

-- 1 - www.get.com.tw/goldensun
2 8 (02)2331-8268
231-3 1 04-22298699
147 3 106-2235868 308 8 07-235-8996

100

SSL

RSARC4
MD5

SET

RSADES
SHA-1

Wireless LAN
10

(Last Mile)

()

802.11nMIMO4x4540 Mbps

()

()

(Quality of Service)

()

Wi-Fi512 Kbps
()

1.3-2
2.3-2

C
typedef struct node {
int data;
struct node *next;
} NODE;
nNODEpointer
headpointer15

-- 2 - www.get.com.tw/goldensun
2 8 (02)2331-8268
231-3 1 04-22298699
147 3 106-2235868 308 8 07-235-8996

100

pointer
node *reverse(struct node *pointer, int n)
{
struct node *end=pointer->next,temp;
int i=0;
pointer->next=NULL;
for(i=1;i<n;i++)
{
temp=end;
end=end->next;
temp->next=pointer;
pointer=temp;
}
return end;
}

1.2-2

54, 65, 50, 45, 89, 40, 25, 31, 72, 7815
()Binary Tree
()Heap Tree
()Heap Sort8978

()

54
65
45
31 72

50
89

40

25

78

()
(Heap)(Max Heap)(Min Heap)

(Top down)(Bottom up)


-- 3 - www.get.com.tw/goldensun
2 8 (02)2331-8268
231-3 1 04-22298699
147 3 106-2235868 308 8 07-235-8996

100

heap

89
78
72
31 45

50
65

40

25

54

()
1.
2.89

78
72
54

50
65

40

25

31 45
3.78

data schema

BOOK (BookId, Title, PublisherName)


BOOK_AUTHORS (BookId, AuthorName)
PUBLISHER (Name, Address, Phone)
BOOK_COPIES (BookId, BranchId, No_Of_Copies)
BOOK_LOANS (BookId, BranchId, CardNo, DataOut, DueDate)
-- 4 - www.get.com.tw/goldensun
2 8 (02)2331-8268
231-3 1 04-22298699
147 3 106-2235868 308 8 07-235-8996

100

LIBRARY_BRANCH (BranchId, BranchName, Address)


BORROWER (CarNo, Name, Address, Phone)
SQL40
()
()
()
()

()
SELECT BranchId, No_Of_Copies, COUNT(*) AS Number FROM BOOK, BOOK_COPIES,
LIBRARY_BRANCH WHERE BOOK.Title = and BOOK.BookId = BOOK_COPIES.BookId and
LIBRARY_BRANCH.BranchId = BOOK_COPIES.BranchId GROUP BY BranchId
()
SELECT Name, BranchId FROM BOOK, BOOK_LOANS, LIBRARY_BRANCH, BORROWER WHERE
BOOK.Title = and BOOK_LOANS.BookId = BOOK.BookId and BOOK_LOANS.BranchId =
LIBRARY_BRANCH.BranchId
and
BOOK_LOANS.CardNo
=
BORROWER.CardNo
and
BORROWER.DateOut<= getdate()
()
SELECT Name, BranchId, Title FROM LIBRARY_BRANCH, BOOK_LOANS, BOOK, BORROWER WHERE
BOOK_LOANS.BookId = BOOK.BookId and BOOK_LOANS.BranchId = LIBRARY_BRANCH.BranchId and
BOOK_LOANS.CardNo = BORROWER.CardNo and BORROWER.DueDate<= getdate()
()
SQL
SELECT Title, PublisherName, COUNT(*) AS Number FROM BOOK, GROUP BY Title, PublisherName

1.4-5
2.4-5

-- 5 - www.get.com.tw/goldensun
2 8 (02)2331-8268
231-3 1 04-22298699
147 3 106-2235868 308 8 07-235-8996

You might also like