链接大全

链接大全


安全

Array Networks http://www.arraynetworks.net/ SSL VPN和流量管理解决方案
Safenet http://www.safenet-inc.com/ 软件保护
博威特网络 http://www.barracudanetworks.com/ 垃圾邮件过滤,间谍软件防护,
赛门铁客 http://www.symantec.com 杀毒
趋势科技 http://www.trendmicro.com 杀毒
mcafee http://www.mcafee.com 杀毒
ISS http://www.iss.net/
landesk http://www.landesk.com/ 桌面安全
check point http://www.checkpoint.com/
juniper http://www.juniper.net/
fortinet http://www.fortinet.com/
cisco http://www.cisco.com
RSA http://www.rsa.com
CA http://www.ca.com/
secure computing http://www.securecomputing.com/
AVG http://www.grisoft.com/
pandasoftware http://www.pandasoftware.com/
kaspersky http://www.kaspersky.com
Microsoft http://www.microsoft.com
Spybot http://www.safer-networking.org
giant http://www.giantcompany.com/ anti spyware、privacy protect 已被微软收购
lavasoft http://www.lavasoftusa.com/ privacy protect
http://www.drweb.com/ antivirus 很多杀毒公司用它的引擎,据该公司创始人说,世界上真正掌握杀毒技术的,也就5家公司

绿盟论坛 http://bbs.nsfocus.net/
熊猫卫士安全论坛 http://www.pandaguard.com/bbs/
安全中国论坛 http://bbs.anqn.com/
创新者论坛 http://iventor.net/bbs/
黑色海岸线 http://www.thysea.com/lb/cgi-bin/leoboard.cgi
安全焦点 http://www.xfocus.net/
中国安全信息网 http://www.hacker.cn/

国外的安全技术站点
http://www.securityfocus.com/
http://www.cert.org/
http://informationsecurity.techtarget.com/
http://www.gartner.com
http://www.icsa.net/
http://www.toptenreviews.com/ review 网站,可以看看对安全相关产品的Review

   1. 天融信 http://www.topsec.com.cn/ firewall、安全服务
   2. 东软 http://neteye.neusoft.com/ firewall
   3. 启明星辰 http://www.venustech.com.cn/ IDS
   4. 绿盟 http://www.nsfocus.com/ 安全服务、
   5. 联想网御 http://www.infosec365.com.cn/ firewall
   6. 方正信息安全 http://www.foundersec.com/ virus
   7. 瑞星 http://www.rising.com.cn/ virus
   8. 江民 http://www.jiangmin.com/ virus
   9. 金山 http://www.kingsoft.com/ virus
  10. 冠群金辰 http://www.kill.com.cn/ virus
  11. 安氏中国 http://www.is-one.net/ 安全产品、安全服务
  12. 北信源 http://www.vrv.com.cn/ virus
  13. 华为3com http://www.huawei-3com.com.cn vpn网关、NIPS
  14. 瑞达信息安全 http://www.jetsec.com.cn/ 可信平台
  15. 台湾侠诺科技 http://www.qno.net.cn/ firewall、vpn网关
  16. 神州数码 http://www.dcns.cn/
  17. 中科网威 http://www.netpower.com.cn

统计学、数据挖掘、商务智能

国外开源BI项目 
数据仓库工具箱 
北美精算网 
统计网站 
数据仓库之路
ITPUB论坛
ChinaUnix论坛
IT Presale论坛
数据挖掘研究院
中国学术论坛
人工智能网
中国统计
SAS中文论坛
SPSS中文论坛
DM Review
BI Review
BI Pipeline
BI.com
DW Online
BI&DW Edu
BI-DW Home
Intelligent Enterprise
Blog On DW
SQLServer DataMining
HappysBoy's Blog
MicroSoft BI
Oracle DW
Oracle BI
AMT BI
IBM BI
Mark Rittman's Blog
SQL BI
CSDN BI
Yangweili's Blog

 
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
/* * 基于双向链表实现双端队列结构 */ package dsa; public class Deque_DLNode implements Deque { protected DLNode header;//指向头节点(哨兵) protected DLNode trailer;//指向尾节点(哨兵) protected int size;//队列中元素的数目 //构造函数 public Deque_DLNode() { header = new DLNode(); trailer = new DLNode(); header.setNext(trailer); trailer.setPrev(header); size = 0; } //返回队列中元素数目 public int getSize() { return size; } //判断队列是否为空 public boolean isEmpty() { return (0 == size) ? true : false; } //取首元素(但不删除) public Object first() throws ExceptionQueueEmpty { if (isEmpty()) throw new ExceptionQueueEmpty("意外:双端队列为空"); return header.getNext().getElem(); } //取末元素(但不删除) public Object last() throws ExceptionQueueEmpty { if (isEmpty()) throw new ExceptionQueueEmpty("意外:双端队列为空"); return trailer.getPrev().getElem(); } //在队列前端插入新节点 public void insertFirst(Object obj) { DLNode second = header.getNext(); DLNode first = new DLNode(obj, header, second); second.setPrev(first); header.setNext(first); size++; } //在队列后端插入新节点 public void insertLast(Object obj) { DLNode second = trailer.getPrev(); DLNode first = new DLNode(obj, second, trailer); second.setNext(first); trailer.setPrev(first); size++; } //删除首节点 public Object removeFirst() throws ExceptionQueueEmpty { if (isEmpty()) throw new ExceptionQueueEmpty("意外:双端队列为空"); DLNode first = header.getNext(); DLNode second = first.getNext(); Object obj = first.getElem(); header.setNext(second); second.setPrev(header); size--; return(obj); } //删除末节点 public Object removeLast() throws ExceptionQueueEmpty { if (isEmpty()) throw new ExceptionQueueEmpty("意外:双端队列为空"); DLNode first = trailer.getPrev(); DLNode second = first.getPrev(); Object obj = first.getElem(); trailer.setPrev(second); second.setNext(trailer); size--; return(obj); } //遍历 public void Traversal() { DLNode p = header.getNext(); while (p != trailer) { System.out.print(p.getElem()+" "); p = p.getNex
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值