XOR排序数组


15

给定一个键和一个字符串数组,请对该数组进行混洗,以便在每个元素与该键进行XOR运算时将其排序。

对两个字符串进行异或

要通过键对字符串进行异或,请将该键对中的每个字符值通过键中的对进行异或,以使该键永远重复。例如,abcde^123如下所示:

       a        b        c        d        e
       1        2        3        1        2
--------------------------------------------
01100001 01100010 01100011 01100100 01100101
00110001 00110010 00110011 00110001 00110010
--------------------------------------------
01010000 01010000 01010000 01010101 01010111
--------------------------------------------
       P        P        P        U        W

排序

排序应始终按XOR字符串的顺序进行。也就是说,1 < A < a < ~(假设ASCII编码)

"912", ["abcde", "hello", "test", "honk"]

-- XOR'd
["XSQ]T", "QT^U^", "MTAM", "Q^\R"]
-- Sorted
["MTAM", "QT^U^", "Q^\R", "XSQ]T"]
-- Converted back
["test", "hello", "honk", "abcde"]

笔记

  • 密钥将始终至少为1个字符
  • 键和输入将仅包含可打印的ASCII。
  • XOR字符串可能包含不可打印的字符。
  • 输入和输出可以通过合理的方法完成
  • 禁止使用标准漏洞
  • 您可以按任何顺序进行键和输入。

测试用例

key, input -> output
--------------------
"912", ["abcde", "hello", "test", "honk"] -> ["test", "hello", "honk", "abcde"]
"taco", ["this", "is", "a", "taco", "test"] -> ["taco", "test", "this", "a", "is"]
"thisisalongkey", ["who", "what", "when"] -> ["who", "what", "when"]
"3", ["who", "what", "when"] -> ["what", "when", "who"]

这是,因此最少字节获胜!


相关远不及欺骗虽然
MD XF

是否保证字符串不同?
尼尔,

@Neil虽然我无法想象它们完全相同会导致问题的情况,但是您可以假定所有字符串都是唯一的。
ATaco

@ATaco如果您不使用内置字符串比较,那肯定很重要。
丹尼斯

Answers:


7

果冻9 7个字节

⁹ṁO^OµÞ

感谢@EriktheOutgolfer的建议,该建议有助于节省2个字节!

在线尝试!

怎么运行的

⁹ṁO^OµÞ  Dyadic link.
         Left argument: A (string array). Right argument: k (key string).

     µ   Combine the code to the left into a chain.
         Begin a new, monadic chain with argument A.
      Þ  Sort A, using the chain to the left as key.
         Since this chain is monadic, the key chain will be called monadically,
         once for each string s in A.
⁹            Set the return value to the right argument of the link (k).
 ṁ           Mold k like s, i.e., repeat its characters as many times as necessary
             to match the length of s.
  O          Ordinal; cast characters in the resulting string to their code points.
    O        Do the same for the chain's argument (s).
   ^         Perform bitwise XOR.

10

Python 3中75 73个字节

lambda k,x:x.sort(key=lambda s:[ord(x)^ord(y)for x,y in zip(s,k*len(s))])

这将对列表x进行原位排序。

感谢@mercator打高尔夫球2个字节!

在线尝试!

备用版本,62字节

这将输入作为字节字符串,这可能是不允许的。

lambda k,x:x.sort(key=lambda s:[*map(int.__xor__,s,k*len(s))])

在线尝试!


就地排序可节省2个字节:x.sort(key=...)
墨卡托

3

Haskell,77个字节

import Data.Bits
import Data.List
t=fromEnum
sortOn.zipWith((.t).xor.t).cycle

进口太多。

在线尝试!



2

干净101 100 94个字节

-6个字节感谢Ourous!

import StdEnv
? =toInt
s k=let%s=[b bitxor?a\\a<-s&b<-[?c\\_<-s,c<-k]];@a b= %b> %a in sortBy@

在线尝试!用法示例:s ['3'] [['who'], ['what'], ['when']]

取消高尔夫:

import StdEnv
sort key list = 
   let
      f string = [(toInt a) bitxor (toInt b) \\ a<-string & b<-flatten(repeat key)]
      comp a b = f a <= f b
   in sortBy comp list

? =toInt而使用?则可节省2个字节,而使用翻转的大于号而不是小于或等于将保存另一个字节。
2009年

更妙的是,节省了6个字节:TIO
Οurous

1

实际上,24个字节

O╗⌠;O;l;╜@αH♀^♂cΣ@k⌡MS♂N

在线尝试!

说明:

O╗⌠;O;l;╜@αH♀^♂cΣ@k⌡MS♂N
O╗                        store ordinals of key in register 0
  ⌠;O;l;╜@αH♀^♂cΣ@k⌡M     for each string in array:
   ;O                       make a copy, ordinals
     ;l;                    make a copy of ordinals, length, copy length
        ╜@αH                list from register 0, cycled to length of string
            ♀^              pairwise XOR
              ♂cΣ           convert from ordinals and concatenate
                 @k         swap and nest (output: [[a XOR key, a] for a in array])
                     S♂N  sort, take last element (original string)

@ATaco不,不是。与试用["who", "what", "when"]"thisisalongkey"
凯尔德coinheringaahing

1
@cairdcoinheringaahing在TIO上的实际补丁之前发布。
ATaco

1

Perl 6、37个字节

{@^b.sort(*.comb Z~^(|$^a.comb xx*))}

在线尝试!

$^a@^b分别是函数的键和数组参数。 @^b.sort(...)只需根据给定的谓词函数对输入数组进行排序。该函数接受单个参数,因此sort将依次向每个元素传递该参数,并将返回值视为该元素的键,并按元素的键对列表进行排序。

排序功能为*.comb Z~^ (|$^a.comb xx *)*是该函数的单个字符串参数。 *.comb是字符串的各个字符的列表。 |$^a.comb xx *是xor排序键中的字符列表,可以无限复制。Z使用按字符串的异或运算符(~^)将这两个列表压缩在一起()。由于排序谓词返回的是列表的排序键,因此sort通过比较返回列表的第一个元素对两个元素进行排序,如果第一个元素相同,则对第二个元素进行排序,等等。


{sort *.comb »~^»$^a.comb,@^b}
布拉德·吉尔伯特b2gills

1

C(GCC) 132个 128 126字节

char*k;g(a,b,i,r)char**a,**b;{r=k[i%strlen(k)];(r^(i[*a]?:-1))-(r^(i[*b]?:-2))?:g(a,b,i+1);}f(c,v)int*v;{k=*v;qsort(v,c,8,g);}

接受参数计数和指向字符串数组的指针(键,后跟要排序的字符串),并就地修改字符串数组。

该代码高度不可移植,需要64位指针,gcc和glibc。

感谢@ceilingcat打高尔夫球2个字节!

在线尝试!


1

蟒蛇 2,204 140 134  126字节

感谢@先生。Xcoder节省了64个字节,这要感谢@ovs节省了6个字节,感谢@Dennis节省了8个字节!

lambda k,l:[x(k,s)for s in sorted(x(k,s)for s in l)]
x=lambda k,s:''.join(chr(ord(v)^ord(k[i%len(k)]))for i,v in enumerate(s))

在线尝试!


1

x86操作码,57字节

0100  60 89 CD 4D 8B 74 8A FC-8B 3C AA 53 F6 03 FF 75
0110  02 5B 53 8A 23 AC 08 C0-74 0A 30 E0 32 27 47 43
0120  38 E0 74 E8 77 0A 8B 04-AA 87 44 8A FC 89 04 AA
0130  85 ED 5B 75 CE E2 CA 61-C3

    ;input ecx(length), edx(array), ebx(xor-d)
F:  pushad
L1: mov ebp, ecx
L2: dec ebp
    mov esi, [edx+ecx*4-4]
    mov edi, [edx+ebp*4]
    push ebx
L6: test [ebx], byte -1 ; t1b
    jnz L4
    pop ebx
    push ebx
L4: mov ah, [ebx]
    lodsb
    or  al, al
    jz  L7
    xor al, ah
    xor ah, [edi]
    inc edi
    inc ebx
    cmp al, ah
    jz  L6
L7: ja  L8
    mov eax, dword[edx+ebp*4]
    xchg eax, dword[edx+ecx*4-4]
    mov dword[edx+ebp*4], eax
L8: ;call debug
    test ebp, ebp
    pop ebx
    jnz L2
    loop L1
    popad
    ret            

测试代码:

if 1
    use32
else
    org $0100
    mov ecx, (Qn-Q0)/4
    mov edx, Q0
    mov ebx, S
    call F
    call debug
    ret

debug:pushad
    mov ecx, (Qn-Q0)/4
    mov edx, Q0
    mov ebx, S
E3:   mov esi, [edx]
    push dx
    mov ah, 2
E4:   lodsb
    cmp al, 0
    jz E5
    mov dl, al
    int $21
    jmp E4
E5:   mov dl, $0A
    int $21
    mov dl, $0D
    int $21
    pop dx
    add edx, 4
    loop E3
    ;mov ah, 1
    ;int $21
    int1
    popad
    ret
    align 128
Q0:
    dd str1, str2, str3, str4
Qn:
S     db '912', 0
str1  db 'abcde', 0
str2  db 'hello', 0
str3  db 'test', 0
str4  db 'honk', 0
    align 128
end if
    ;input ecx(length), edx(array), ebx(xor-d)
F:  pushad
L1: mov ebp, ecx
L2: dec ebp
    mov esi, [edx+ecx*4-4]
    mov edi, [edx+ebp*4]
    push ebx
L6: test [ebx], byte -1 ; t1b
    jnz L4
    pop ebx
    push ebx
L4: mov ah, [ebx]
    lodsb
    or  al, al
    jz  L7
    xor al, ah
    xor ah, [edi]
    inc edi
    inc ebx
    cmp al, ah
    jz  L6
L7: ja  L8
    mov eax, dword[edx+ebp*4]
    xchg eax, dword[edx+ecx*4-4]
    mov dword[edx+ebp*4], eax
L8: ;call debug
    test ebp, ebp
    pop ebx
    jnz L2
    loop L1
    popad
    ret

1

JavaScript ES 6,113 97 95字节

k=>p=>p.sort((a,b,F=x=>[...x].map((y,i)=>1e9|y.charCodeAt()^(p=k+p).charCodeAt(i)))=>F(a)>F(b))

JavaScript长期从事字符编码...

对于[0,65536)+ 1e4均为5位数字,因此可以像字符串一样进行比较

Q=
k=>p=>p.sort((a,b,F=x=>[...x].map((y,i)=>1e9|y.charCodeAt()^(p=k+p).charCodeAt(i)))=>F(a)>F(b))
;
console.log(Q("912")(["abcde", "hello", "test", "honk"]));
console.log(Q("taco")(["this", "is", "a", "taco", "test"]));
console.log(Q("thisisalongkey")(["who", "what", "when"]));
console.log(Q("3")(["who", "what", "when"]));


因此,我可以使用小型测试用例k+=k来代替而不是使用p=k+p太多内存
l4m2


0

Clojure,80个字节

#(sort-by(fn[s](apply str(apply map bit-xor(for[i[(cycle %)s]](map int i)))))%2)


0

AWK285个 284字节

{for(;z++<128;){o[sprintf("%c",z)]=z}split(substr($0,0,index($0,FS)),k,"");$1="";split($0,w);for(q in w){split(w[q],l,"");d="";for(;i++<length(l);){d=d sprintf("%c",xor(o[k[(i-1)%(length(k)-1)+1]],o[l[i]]))}a[q]=d;i=0}asort(a,b);for(j in b){for(i in a){printf(a[i]==b[j])?w[i]FS:""}}}

在线尝试!

接受以下形式的输入 key word word ...例如912 abcde hello test honk

输出排序的单词,空格分隔

更具可读性

{
  for (; z++ < 128;) {
    o[sprintf("%c", z)] = z
  }
  split(substr($0, 0, index($0, FS)), k, "");
  $1 = "";
  split($0, w);
  for (q in w) {
    split(w[q], l, "");
    d = "";
    for (; i++ < length(l);) {
      d = d sprintf("%c", xor(o[k[(i - 1) % (length(k) - 1) + 1]], o[l[i]]))
    }
    a[q] = d;
    i = 0;
  }
  asort(a, b);
  for (j in b) {
    for (i in a) {
      printf(a[i] == b[j]) ? w[i] FS : ""
    }
  }
}  

0

因子85

[ [ dup length rot <array> concat [ bitxor ] 2map ] with
[ dup bi* <=> ] curry sort ]

首先尝试,明天再打高尔夫。

我接受建议;)


0

Dyalog APL,34个字节

Dfn,使用⎕ml3

{⍵[⍋⊃82⎕dr¨⊃≠/11⎕dr¨¨⍵((⍴¨⍵)⍴⊂⍺)]}
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.