pex9_8.cpp

来自「数据结构C++代码,经典代码,受益多多,希望大家多多支持」· C++ 代码 · 共 64 行

CPP
64
字号
#include <iostream.h>
#include <strstream.h>
#pragma hdrstop

#include "strclass.h"
#include "link.h"

// print LinkedList object L
template <class T>
void PrintList(LinkedList<T> &L)
{
	L.Reset();
	if (!L.ListEmpty())
	{
		while(!L.EndOfList())
		{
			cout << L.Data() << "  ";
			L.Next();
		}
		cout << endl;
	}
}

void main(void)
{
	// declare the two linked lists of String objects
	LinkedList<String> tokenlist, optionlist;
	char line[80];
	String S;
	
	// read the whitespace separated tokens into C++ string line
	cout << "Input a line of tokens including options:" << endl;
	cin.getline(line, 80, '\n');

	// declare array-based input object instr. we read the tokens
	// from line using instr
	istrstream instr(line);

	// read tokens until end of line
	while(instr >> S)
		if (S[0] == '-')
			// insert option string at rear of optionlist
			optionlist.InsertRear(S);
		else
			// insert non-option string at rear of tokenlist
			tokenlist.InsertRear(S);

	// print the two lists
	cout << endl << "Options: ";
	PrintList(optionlist);
	cout << "Tokens:  ";
	PrintList(tokenlist);
}
/*
<Run>

Input a line of tokens including options:
copy -r file1 -t file2 -print c:\here

Options: -r  -t  -print
Tokens:  copy  file1  file2  c:\here
*/

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?