博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
计算连续的IP地址问题
阅读量:6514 次
发布时间:2019-06-24

本文共 1167 字,大约阅读时间需要 3 分钟。

题目:要求计算连续的IP地址。

举例:起始IP为192.168.2.2,IP总个数为3,那么要求得的所有IP的为192.168.2.2,192.168.2.3,192.168.2.4。再举个例子,起始IP为192.168.2.253,IP总个数为5那么要求得的所有IP为192.168.2.253,192.168.2.254,192.168.2.255,192.168.3.0,192.168.3.1。

按照传统的解法可以这么做:

1
2
3
4
5
6
7
8
9
10
11
12
13
static 
void 
Main(
string
[] args)
{
    
string 
ip = 
"192.168.2.253"
;
//起始IP
    
int 
count = 5;
//要计算连续IP的个数
                 
    
var 
ipValue = BitConverter.ToUInt32(IPAddress.Parse(ip).GetAddressBytes().Reverse().ToArray(), 0);
                 
    
for 
(
uint 
i = 0; i < count; i++)
    
{
        
IPAddress newIp = IPAddress.Parse((ipValue + i).ToString());
        
Console.WriteLine(newIp);
    
}
}

那如果我们用linq稍微改造一下,可以这么干:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
static 
void 
Main(
string
[] args)
{
    
string 
ip = 
"192.168.2.253"
;
//起始IP
    
int 
count = 5;
//要计算连续IP的个数
            
    
var 
ipValue = BitConverter.ToUInt32(IPAddress.Parse(ip).GetAddressBytes().Reverse().ToArray(), 0);
            
    
var 
newIps = 
from 
in 
Enumerable.Range(0, count)
                 
let 
newIp = ipValue + p
                 
select 
new 
{ IP = IPAddress.Parse(newIp.ToString()) };
            
    
foreach 
(
var 
newIp 
in 
newIps)
    
{
        
Console.WriteLine(newIp.IP);
    
}
}

答案:

192.168.2.253

192.168.2.254
192.168.2.255
192.168.3.0
192.168.3.1

本文转自 guwei4037  51CTO博客,原文链接:http://blog.51cto.com/csharper/1348959

转载地址:http://aspfo.baihongyu.com/

你可能感兴趣的文章
12c windows auto installl
查看>>
嵌入式开发之pci---主板拓展插潮
查看>>
Shell 编程 (变量和条件测试)
查看>>
使用 nodeJs 开发微信公众号(设置自动回复消息)
查看>>
得分函数;损失函数;正则化;过拟合、泛化能力;softmax分类器;激励函数;梯度下降;后向传播...
查看>>
[论文笔记] 一种Java遗留系统服务化切分和封装方法 (计算机学报, 2009)
查看>>
SVD and FT and Haar Wavelet
查看>>
eclipse 支持 Robot framework 编辑环境
查看>>
水平时间轴 html + css
查看>>
TF和SD
查看>>
pdf小册子页序重排——买不起书的穷屌丝
查看>>
asp.net实现access数据库分页
查看>>
前端程序员容易忽视的一些基础知识[转]
查看>>
滑动关闭activity
查看>>
Struts2源码浅析-ConfigurationProvider
查看>>
信息传递 vijos1979 NOIP2015D1T2 强连通分量 tarjan模版题
查看>>
JQuery取得变量ID
查看>>
flex水平居中并且高度自适应
查看>>
Ubuntu下cocos2d-x环境变量
查看>>
时间处理总结(三)javascript与WCF
查看>>