abbreviation

1. ps------process status

2. tty-----teletype

3. ping----packet internet groper

4. nohup-----no hangup

5. su-------switch user

6. df--------disk free

7. cat--------concatenate

8. man-------manual

9. fsck---------file system check

10. chown-----change owner

11. fg-------foreground

12. bg-------background

13. chgrp-----change group

14. tar--------tape archive

15. apt-------advanced packet tool

16. etc--------etcetera

17. usr--------unix shared resources

18. var--------variable

19. grub-------grand unified bootloader

20. LILO------linux loader

21. awk-------aho weiberger and kernighan

时间: 2024-10-15 08:52:33

abbreviation的相关文章

ZOJ 2947: Abbreviation

Abbreviation ///@author Sycamore, ZJNU; ///@date 8/6/2017 #include<bits/stdc++.h> using namespace std; typedef long long ll; int main() { ios::sync_with_stdio(false); int T; cin >> T; while (T--) { bool same = true; int N, M; cin >> N; s

[LeetCode] Word Abbreviation 单词缩写

Given an array of n distinct non-empty strings, you need to generate minimal possible abbreviations for every word following rules below. Begin with the first character and then the number of characters abbreviated, which followed by the last charact

【模拟】Gym - 101190A - Abbreviation

让你把所有的"连续的仅有首字母大写的"词组用缩写表示,并且在后面用括号注明原词组. #include<cstdio> #include<cstring> using namespace std; char s[130]; bool iszimu(char c){ return ((c>='A' && c<='Z') || (c>='a' && c<='z')); } bool isbig(char c){

Leetcode: Unique Word Abbreviation

An abbreviation of a word follows the form <first letter><number><last letter>. Below are some examples of word abbreviations: a) it --> it (no abbreviation) 1 b) d|o|g --> d1g 1 1 1 1---5----0----5--8 c) i|nternationalizatio|n --&

288. Unique Word Abbreviation

题目: An abbreviation of a word follows the form <first letter><number><last letter>. Below are some examples of word abbreviations: a) it --> it (no abbreviation) 1 b) d|o|g --> d1g 1 1 1 1---5----0----5--8 c) i|nternationalizatio|n

408. Valid Word Abbreviation

Given a non-empty string s and an abbreviation abbr, return whether the string matches with the given abbreviation. A string such as "word" contains only the following valid abbreviations: ["word", "1ord", "w1rd", &

411. Minimum Unique Word Abbreviation

A string such as "word" contains the following abbreviations: ["word", "1ord", "w1rd", "wo1d", "wor1", "2rd", "w2d", "wo2", "1o1d", "1or1", "

Unique Word Abbreviation

An abbreviation of a word follows the form <first letter><number><last letter>. Below are some examples of word abbreviations: a) it --> it (no abbreviation) 1 b) d|o|g --> d1g 1 1 1 1---5----0----5--8 c) i|nternationalizatio|n --&

Valid Word Abbreviation Leetcode

Given a non-empty string s and an abbreviation abbr, return whether the string matches with the given abbreviation. A string such as "word" contains only the following valid abbreviations: ["word", "1ord", "w1rd", &

LeetCode Valid Word Abbreviation

原题链接在这里:https://leetcode.com/problems/valid-word-abbreviation/#/description 题目: Given a non-empty string s and an abbreviation abbr, return whether the string matches with the given abbreviation. A string such as "word" contains only the followi