惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

WordPress大学
WordPress大学
V
Visual Studio Blog
P
Privacy International News Feed
月光博客
月光博客
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
L
Lohrmann on Cybersecurity
N
News and Events Feed by Topic
K
KPMG report finds enterprise disconnect between AI and its ROI | CIO
Apple Machine Learning Research
Apple Machine Learning Research
阮一峰的网络日志
阮一峰的网络日志
Webroot Blog
Webroot Blog
T
Threatpost
宝玉的分享
宝玉的分享
The Last Watchdog
The Last Watchdog
小众软件
小众软件
L
LINUX DO - 最新话题
C
Cisco Blogs
T
Troy Hunt's Blog
Schneier on Security
Schneier on Security
酷 壳 – CoolShell
酷 壳 – CoolShell
www.infosecurity-magazine.com
www.infosecurity-magazine.com
雷峰网
雷峰网
G
GRAHAM CLULEY
有赞技术团队
有赞技术团队
Know Your Adversary
Know Your Adversary
博客园 - 叶小钗
罗磊的独立博客
V
V2EX
博客园 - Franky
P
Proofpoint News Feed
SecWiki News
SecWiki News
腾讯CDC
cs.CL updates on arXiv.org
cs.CL updates on arXiv.org
Jina AI
Jina AI
博客园 - 三生石上(FineUI控件)
S
Secure Thoughts
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Google DeepMind News
Google DeepMind News
Attack and Defense Labs
Attack and Defense Labs
人人都是产品经理
人人都是产品经理
The Cloudflare Blog
PCI Perspectives
PCI Perspectives
V2EX - 技术
V2EX - 技术
Google DeepMind News
Google DeepMind News
Last Week in AI
Last Week in AI
aimingoo的专栏
aimingoo的专栏
Cisco Talos Blog
Cisco Talos Blog
N
News and Events Feed by Topic
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
S
SegmentFault 最新的问题

博客园 - —无 名

asp.net禁止页面缓存,适合各种浏览器 - —无 名 - 博客园 control keymgr.dll System.Net.WebException: 请求因 HTTP 状态 417 失败: Expectation failed 问题 Word2007 切换窗口后鼠标失灵的解决办法 正则表达式验证任意个email 水仙花法则 潜伏了好久,开始出来活动 【免费软件测试视频-0035】——测试自动化框架--AC框架介绍二 【免费软件测试视频-0034】——测试自动化框架系列之---AC简介之一 【免费软件测试视频-0033】——Jmeter系列之---脚本录制与监控 【免费软件测试视频-0032】——LR系列之---RunTime Setting 【免费软件测试视频-0031】——QTP系列之---功能测试自动化概要介绍 【免费软件测试视频-0030】——TD系列之---后台管理 【免费软件测试视频-0029】——robot系列之---SQABasic归纳总结常用的语句 【免费软件测试视频-0028】——Robot系列之--SQABasic 【免费软件测试视频-0027】——LR系列之---参数化(二) 【免费软件测试视频-0026】——robot系列之--定制 Basic脚本 【免费软件测试视频-0025】——TD系列之--TD简介与安装 【免费软件测试视频-0024】——lr系列之--winsocket的脚本编写技术
C#比较数组内元素相等-冒泡
—无 名 · 2008-10-31 · via 博客园 - —无 名

int[] Arr= new int[]{,,,,,,,,,,,,,,};

int i=1,j=0;
    for(i=1;a<Arr.Length;i++)
    {
     for(j=0;j<Arr.Length-i;j++)
     {
      if(ArrSel[i-1]==Arr[i+j])//循环对比Arr[i-1]
      {
           code……

      } 
     }
    }

不知道大家有没有更优的?