詳細なIP範囲ジェネレーター


11

タスクは単純で、2つのIPアドレスaとが与えられb、その範囲内のすべてのアドレスを出力します。


例#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

例#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])
    • Wordsで定義されます: a常により低くなりますb(したがって、到達するにはサブネットをインクリメントする必要がありますb)。
    • いいえ、処理する必要はありませんa == b(処理する場合、賞賛)。
  • 出力は、「最低」から「最高」の順になります(例を参照)。
  • このチャレンジの場合、IPの有効な構文は次のとおり\d{1-3}\.\d{1-3}\.\d{1-3}\.\d{1-3}です。
  • IPアドレス以外の入力を処理する必要はありません。予期しない入力である場合、エラーが発生する可能性があります。
  • 出力は、配列または区切り文字列(空白文字を使用)として可能性があります。

勝ち


1
たとえば123.0.200.255との間に「省略パターン」123.0.201.0がありますが、それらは連続していませんか?
nmjcman101

@ nmjcman101は2回それを修正しました。
魔法のタコUr

回答:


3

Pyth、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が変更され、将来このようなコードが短くなります。リストに適用されるときvMのデフォルトになりますv
isaacg

@isaacg cool-おかげで、次回もそれを思い出そうと思います。
デジタル外傷

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

ゼリー、18バイト

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

オンラインでお試しください!

出力は数字と小数で表示されますが、文字列のリストとして内部に保存されます。Y文字列を改行で結合するには、a を末尾(+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に置き換え、2つのパラメーターが等しくなるまで再帰的に呼び出します。

最初の入力に「.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));
}

オンラインでお試しください!

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.