详细IP范围生成器


11

给定两个IP地址ab,该任务很简单,输出该范围内的所有地址。


例子

范例1:

f(a = 192.168.0.1, b = 192.168.0.4) 
    192.168.0.1
    192.168.0.2
    192.168.0.3
    192.168.0.4

Example#2(TIO将截断它,在测试时使用较小的范围):

f (a = 123.0.200.0, b = 124.0.0.0)
    123.0.200.0
    123.0.200.1
    ...            # Omitted pattern 
    123.0.200.255
    123.0.201.0
    ...            # Omitted pattern
    123.0.201.255
    ...            # Omitted pattern
    123.0.255.255
    123.1.0.0
    ...            # Omitted pattern
    123.255.255.255
    124.0.0.0

输入输出

  • a < b 换一种说法:
    • 以编程方式定义a[0] < b[0] || (a[0] == b[0] && a[1] < b[1]) || (a[0:1] == b[0:1] && a[2] < b[2]) || (a[0:2] == b[0:2] && a[3] < b[3])
    • 以字定义: a将始终低于b(因此您必须增加子网才能达到b)。
    • 不,您不必处理a == b(如果可以的话,应声名狼藉)。
  • 输出应按从“最低”到“最高”的顺序排列(请参见示例)。
  • 对于此挑战,IP的有效语法为:\d{1-3}\.\d{1-3}\.\d{1-3}\.\d{1-3}
  • 您不必处理非IP地址输入,如果输入是意外的,则可能会出错。
  • 输出可以是数组或定界字符串(使用任何空格字符)。

获奖


1
您在eg 123.0.200.255和之间有“省略的模式” 123.0.201.0,但是它们不是顺序的吗?
nmjcman101

@ nmjcman101做了两次,已修复。
Magic Octopus Urn

Answers:


3

珀斯,22岁

mj\.jd256}FmivMcd\.256

在线尝试

               cd\.       # split string by "."
             vM           # eval list (convert strings to integers)
            i      256    # convert list of base256 digits to integer
           m          Q   # map the above over implicit input list
         }F               # inclusive range
    jd256                 # convert to list of base256 digits
 j\.                      # join by "." 
m                         # map over inclusive range 

1
这激发了对Pyth的更改,该更改将使将来的此类代码更短。vMv应用于列表时的默认值。
isaacg

@isaacg很酷-谢谢,我会在下次尝试记住这一点。
Digital Trauma'6

3

批处理,623字节

@echo off
set s=%1.%2
call:c %s:.= %
exit/b
:c
if %1==%5 goto d
call:d %1 %2 %3 %4 %1 255 255 255
set/al=%1+1,u=%5-1
for /l %%i in (%l%,1,%u%)do call:d %%i 0 0 0 %%i 255 255 255
call:d %5 0 0 0 %5 %6 %7 %8
exit/b
:d
if %2==%6 goto e
call:e %1 %2 %3 %4 %1 %2 255 255
set/al=%2+1,u=%6-1
for /l %%j in (%l%,1,%u%)do call:e %1 %%j 0 0 %5 %%j 255 255
call:e %5 %6 0 0 %5 %6 %7 %8
exit/b
:e
if %3==%7 goto f
call:f %1 %2 %3 %4 %1 %2 %3 255
set/al=%3+1,u=%7-1
for /l %%k in (%l%,1,%u%)do call:e %1 %2 %%k 0 %5 %6 %%k 255
call:e %5 %6 %7 0 %5 %6 %7 %8
exit/b
:f
for /l %%l in (%4,1,%8)do echo %1.%2.%3.%%l

不幸的是,Batch的32位算术不能打印所有IP地址,因此我必须将其拆分为八位字节。


删除@echo off选项吗?并不是说它有很大的不同。
数字创伤

@DigitalTrauma我想这并不是严格必要的,因为回声总是传到控制台,所以它不是STDOUT的一部分,但是它很烦人,尤其是对于像这样的长脚本。
尼尔

2

Python 2,128个字节

a,b=[reduce(lambda a,b:a<<8|int(b),x.split('.'),0)for x in input()]
while a<=b:print'.'.join(`a>>i&255`for i in[24,16,8,0]);a+=1

在线尝试!



2

果冻,18字节

ṣ”.V€ḅ⁹µ€r/b⁹j”.$€

在线尝试!

输出似乎由数字和小数组成,但是在内部存储为字符串列表。将a附加Y到末尾(+1字节)以换行符连接字符串。

这个怎么运作

ṣ”.V€ḅ⁹µ€r/b⁹j”.$€ - main link, input is a list of addresses which are strings
       µ€          - for each address string,
ṣ”.                  - split on periods
   V€                - eval each element in the list (convert strings to numbers)
     ḅ⁹              - transform from base 256 to integer (⁹ is 256)
         r/        - take the inclusive range
           b⁹      - convert each element in the range from integer to base 256
             j”.$€ - join each address with periods.

2

JavaScript(ES6),104个字节

g=s=>s.replace(/(\d+)\.256/,(_,n)=>++n+'.0')
f=(a,b)=>a==b?a:a+`
`+f(g(g(g(g(a+'.256').slice(0,-2)))),b)

此解决方案将模式n .256 替换为 n + 1 .0,并递归调用自身,直到两个参数相等。

它将“ .256”附加到初始输入以使球滚动。 slice(0,-2)然后用于删除结尾的“ .0”。

例子:

g=s=>s.replace(/(\d+)\.256/,(_,n)=>++n+'.0')
f=(a,b)=>a==b?a:a+`
`+f(g(g(g(g(a+'.256').slice(0,-2)))),b)

console.log('192.168.0.1 ... 192.168.0.4');
console.log(f('192.168.0.1', '192.168.0.4'));

console.log('123.255.255.0 ... 124.0.3.0');
console.log(f('123.255.255.0', '124.0.3.0'));

console.log('192.1.1.1 ... 192.1.1.1 ... kudos');
console.log(f('192.1.1.1', '192.1.1.1'));


1

Java(OpenJDK 8)339 314 282字节

打高尔夫球:

long f(String i)throws Exception{return java.nio.ByteBuffer.wrap(java.net.InetAddress.getByName(i).getAddress()).getInt()&(1L<<32)-1;}void g(String[] a)throws Exception{for(long l=f(a[0]),m=255;l<=f(a[1]);)System.out.println(((l>>24)&m)+"."+((l>>16)&m)+"."+((l>>8)&m)+"."+(l++&m));}

取消高尔夫:

long ipToLong(String ip) throws Exception {
    return java.nio.ByteBuffer.wrap(java.net.InetAddress.getByName(ip).getAddress()).getInt() & (1L << 32) - 1;
}

void printRange(String[] ips) throws Exception {
    for (long ip = ipToLong(ips[0]), m = 255; ip <= ipToLong(ips[1]);)
        System.out.println(((ip >> 24) & m) + "." + ((ip >> 16) & m) + "." + ((ip >> 8) & m) + "." + (ip++ & m));
}

在线尝试!

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.