Pipes實現LeetCode(195.第十行)
[LeetCode] 195.Tenth Line 第十行
How would you print just the 10th line of a file?
For example, assume that file.txt has the following content:
Line 1
Line 2
Line 3
Line 4
Line 5
Line 6
Line 7
Line 8
Line 9
Line 10
Your script should output the tenth line, which is:
Line 10
[show hint]
1. If the file contains less than 10 lines, what should you output?
2. There’s at least three different solutions. Try to explore all possibilities.
這道題讓我們用Bash腳本來打印一個txt文件的第十行,可以用很多種方法來實現,我們先來看一種是用awk來實現的方法,awk是強大的文本分析工具,具有流控制、數學運算、進程控制、內置的變量和函數、循環和判斷的功能。其中NR表示行數,$0表示當前記錄,所以我們可以用if來判斷行數為第十行時,將內容打印出來即可:
解法一:
awk '{if(NR == 10) print $0}' file.txt
我們也可以用更簡潔的寫法來打印出第十行如下:
解法二:
awk 'NR == 10' file.txt
我們也可以使用流編輯工具sed來做。-n默認表示打印所有行,p限定瞭具體打印的行數:
解法三:
sed -n 10p file.txt
我們也可以使用tail和head關鍵字來打印。其中head表示從頭開始打印,tail表示從結尾開始打印,-你表示根據文件行數進行打印,一些區別與聯系請見下列例子:
tail -n 3 file.txt: 打印file文件的最後三行內容
tail -n +3 file.txt: 從file文件第三行開始打印所有內容
head -n 3 file.txt: 打印file文件的前三行
head -n -3 file.txt: 打印file文件除瞭最後三行的所有內容
至於豎杠|為管道命令,用法: command 1 | command 2 他的功能是把第一個命令command1執行的結果作為command 2的輸入傳給command 2。瞭解瞭這些知識,那麼下面一行命令就很好理解瞭,首先輸入file文件從第十行開始的所有內容,然後將輸出內容的第一行打印出來即為第十行:
解法四:
tail -n +10 file.txt | head -n 1
下面這種方法跟上面剛好相反,先輸出file文件的前十行,然後從輸出的第十行開始打印,那麼也能正好打印第十行的內容:
解法五:
head -n 10 file.txt | tail -n +10
參考資料:
https://leetcode.com/discuss/29526/super-simple-solution
https://leetcode.com/discuss/29591/simple-solution-using-awk
到此這篇關於Pipes實現LeetCode(195.第十行)的文章就介紹到這瞭,更多相關Pipes實現第十行內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!
推薦閱讀:
- Pipes實現LeetCode(192.單詞頻率)
- Pipes實現LeetCode(194.轉置文件)
- C++實現LeetCode(148.鏈表排序)
- C++實現LeetCode(141.單鏈表中的環)
- C++實現LeetCode(147.鏈表插入排序)