Perl, 32 = 31 + 1 또는 73 = 72 + 1 (최소 괄호)
32 = 31 + 1 : 불필요한 불필요한 괄호
편집 :
- 수정, 괄호 이제 계산
y///
.
- 불필요한 변수가
$a
제거되었습니다.
$_="("x y/)//.s|$|")"x y/(//|er
런타임 스위치와 함께 사용됩니다. -p
(+1 바이트) .
테스트 파일 input.txt
:
This line has no parentheses
alert(Math.max(1, 2
1+1)*2).toString()
function() { alert('Hello, World!'); })(
(foo))(bar
)))(((
((
))
명령 줄 :
perl -p script.pl <input.txt
또는
perl -pe '$_="("x y/)//.s|$|")"x y/(//|er' <input.txt
결과:
This line has no parentheses
alert(Math.max(1, 2))
(((1+1)*2).toString())
(((function() { alert('Hello, World!'); })()))
(((foo))(bar))
((()))((()))
(())
(())
언 골프 드 :
알고리즘은 간단합니다. 발견 된 각 괄호에 대응하는 항목을 추가하십시오.
$_ = # $_ is provided as input by switch `-p` and
# it is printed afterwards as output.
# y/X// is used to count the character 'X' in $_
'(' x y/)// # add opening parentheses for each closing parentheses
. s|$|')' x y/(//|er # go right before the end of line and insert
# closing parentheses for each opening parentheses
# in the original string
73 = 72 + 1 : 최소 추가 수의 괄호
이 스크립트 는 균형 잡힌 출력을 얻기 위해 최소 수의 괄호 만 추가합니다 .
$a=y/()//cdr;1while$a=~s/\(\)//g;$_=$a=~y/)(/(/dr.$_;s|$|$a=~y/()/)/dr|e
런타임 스위치 -p
(+1 바이트) 와 함께 사용됩니다 .
perl -pe "$a=y/()//cdr;1while$a=~s/\(\)//g;$_=$a=~y/)(/(/dr.$_;s|$|$a=~y/()/)/dr|e" <input.txt
결과:
This line has no parentheses
alert(Math.max(1, 2))
((1+1)*2).toString()
(function() { alert('Hello, World!'); })()
((foo))(bar)
((()))((()))
(())
(())
언 골프 드 :
$a = y/()//cdr; # filter parentheses and store in $a
1 while $a =~ s/\(\)//g; # remove matching parentheses
$_ = $a =~ y/)(/(/dr . $_; # add missing opening parentheses at start of string
s|$|$a=~y/()/)/dr|e # insert missing closing parentheses at end of string
81 = 80 + 1 : 최소 괄호 추가
이것은 균형 출력에 최소 괄호 수를 추가하는 오래된 방법입니다.
my($l,$r);s/[()]/($&eq")"&&($r&&$r--||++$l))||$r++/ger;$_="("x$l.$_;s/$/")"x$r/e
Perl 5.14 (비파괴 대체 수정 자 때문에) 및 런타임 스위치 -p
(+1 바이트)를 사용합니다.
perl -p script.pl <input.txt
결과:
This line has no parentheses
alert(Math.max(1, 2))
((1+1)*2).toString()
(function() { alert('Hello, World!'); })()
((foo))(bar)
((()))((()))
(())
(())
언 골프 드 :
# The while loop is added by option "-p".
LINE:
while (<>) {
# $_ contains the current line
my ($l, $r); # initializes $l and $r (to undef/kind of indirect 0)
# Modifiers for the following substitution of $_:
# /g: process all parentheses
# /e: evaluate code
# /r: does not change the original input string $_ (Perl 5.14)
s/[()]/
# $& contains the matched parentheses
# $r is a balance level counter; at the end $r contains
# the number of needed closing parentheses
# $l is the number of needed opening parentheses;
# if $r would go negative, then an opening parentheses
# is missing and $l is increases and $r remains zero.
(
$& eq ")" && # case ")"
($r && $r-- # close a parentheses group and update balance counter
|| ++$l) # or update $l if an opening parentheses is needed
)
|| $r++ # case "(": increase balance counter
/ger;
$_ = "(" x $l . $_; # add opening parentheses at the begin of line
s/$/")" x $r/e # add closing parentheses before the line end
# the remainder is added by run-time switch "-p"
} continue {
print or die "-p destination: $!\n";
}
()
다른 괄호는 괄호, 또는 할{}
,[]
,<>
, 등의 필요가 아니라 간주?