摘要: #include "stdafx.h" #include <iostream> typedef struct LinkList { int data; struct LinkList *next; } LinkList_t; LinkList *Reverse(LinkList_t *pHead) 阅读全文
posted @ 2020-04-27 22:11 xinyueliu 阅读(200) 评论(0) 推荐(0)
摘要: #include "stdafx.h" #include <string> #include <iostream> #include <algorithm> int doubleNumbers(int array[], int len) { int result = 0 , idxPos = 0 ; 阅读全文
posted @ 2020-04-27 20:17 xinyueliu 阅读(173) 评论(0) 推荐(0)
摘要: How many blocks to ignore:skip=1 for ifseek=1 for ofbackup mbr:dd if=/dev/sda of=mbr bs=512 count=1get partition table in mbr:dd if=mbr of=dpt bs=1 sk 阅读全文
posted @ 2020-04-19 15:53 xinyueliu 阅读(142) 评论(0) 推荐(0)
摘要: find . -name .svn -type d -exec rm -rf {} \; find . -name .svn -type d | xargs rm -rf 阅读全文
posted @ 2020-04-18 15:05 xinyueliu 阅读(181) 评论(0) 推荐(0)
摘要: Clean up citrix files that have not been uninstalled rd /s /q C:\Program Files (x86)\Citrixrd /s /q C:\Program Files (x86)\Common Files\Citrixrd /s /q 阅读全文
posted @ 2020-04-16 21:32 xinyueliu 阅读(106) 评论(0) 推荐(0)
摘要: 匆匆忙忙的赶路是想顿悟这一段崎岖的真意。Hurrying in a hurry is to realize this rugged truth. Find the shoulder that suits you best, you can step on the shoulder of the gi 阅读全文
posted @ 2020-04-16 08:47 xinyueliu 阅读(138) 评论(0) 推荐(0)
摘要: RCTL+C: show/hide menu RCTL+F: full screen RCTL+L: embeded to main window as a picture after installing enhance package:VBoxGuestAdditions.iso RCTL+Fn 阅读全文
posted @ 2020-04-16 00:34 xinyueliu 阅读(138) 评论(0) 推荐(0)
摘要: The first way is to click on the column header to select and pasteThe second method is to fill the first cell, and then double-click the plus sign in 阅读全文
posted @ 2020-04-14 14:49 xinyueliu 阅读(165) 评论(0) 推荐(0)
摘要: #!/bin/bash vi 2.txt << EOF :%s/\v[^\x00-\xff]+//g :1,$ !tr [a-z] [A-Z] :1,$ !sort :x EOF 阅读全文
posted @ 2020-04-14 13:04 xinyueliu 阅读(113) 评论(0) 推荐(0)
摘要: fileName = "f.txt"content = "blank context" Dim objFSOSet objFSO = CreateObject("scripting.filesystemobject")absFileName = objFSO.GetAbsolutePathName( 阅读全文
posted @ 2020-04-13 19:11 xinyueliu 阅读(262) 评论(0) 推荐(0)