mirror of https://github.com/doocs/leetcode.git
1.2 KiB
1.2 KiB
| comments | difficulty | edit_url | tags | |
|---|---|---|---|---|
| true | 中等 | https://github.com/doocs/leetcode/edit/main/solution/0100-0199/0194.Transpose%20File/README.md |
|
194. 转置文件
题目描述
给定一个文件 file.txt,转置它的内容。
你可以假设每行列数相同,并且每个字段由 ' ' 分隔。
示例:
假设 file.txt 文件内容如下:
name age alice 21 ryan 30
应当输出:
name alice ryan age 21 30
解法
方法一:awk
Shell
# Read from the file file.txt and print its transposed content to stdout.
awk '
{
for (i=1; i<=NF; i++) {
if(NR == 1) {
res[i] = re$i
} else {
res[i] = res[i]" "$i
}
}
}END {
for (i=1;i<=NF;i++) {
print res[i]
}
}
' file.txt