北理工计算机复试上机 2011

1.输入一组单词(区分大小写),统计首字母相同的
单词的个数,相同的单词不累加,输出格式:“字母,个数”

 1 // 2011_1.cpp : Defines the entry point for the console application.
 2 //
 3
 4 #include<iostream>
 5 #include<vector>
 6 #include<string>
 7 using namespace std;
 8 /**
 9 1.
10 输入一组单词(区分大小写),统计首字母相同的
11 单词的个数,相同的单词不累加,输出格式:“字母,个数”
12 */
13 int main(int argc, char* argv[])
14 {
15     vector<string> list;
16     string s;
17     cout<<"请输入一组单词,输入00结束"<<endl;
18     vector<string>::iterator i;
19     int flag=0;
20     while(cin>>s){
21         if(s=="00")break;
22         flag=0;
23         for(i=list.begin();i!=list.end();i++){
24             if((*i)==s)flag=1;
25         }
26         if(flag==0)list.push_back(s);
27
28     }
29     int count=0;
30     char x;
31     for(x=‘a‘;x<=‘z‘;x++){
32         count=0;
33         for(i=list.begin();i!=list.end();i++){
34             if((*i)[0]==x)count++;
35
36         }
37         if(count!=0)cout<<x<<" "<<count<<endl;
38     }
39     for(x=‘A‘;x<=‘Z‘;x++){
40         count=0;
41         for(i=list.begin();i!=list.end();i++){
42             if((*i)[0]==x)count++;
43
44         }
45         if(count!=0)cout<<x<<" "<<count<<endl;
46     }
47
48     for(i=list.begin();i!=list.end();i++)cout<<(*i)<<" ";
49     return 0;
50 }
2.输入一组单词,(区分大小写),输出其字典排序。
 1 // 2011_2.cpp : Defines the entry point for the console application.
 2 //
 3
 4 #include<iostream>
 5 #include<string>
 6 #include<vector>
 7 #include<algorithm>
 8
 9 using namespace std;
10
11 bool ace(string a,string b){
12     return a<b;
13 }
14
15 /**
16 2.输入一组单词,(区分大小写),输出其字典排序。
17 */
18 int main(int argc, char* argv[])
19 {
20     vector<string> list;
21     string s;
22     while(cin>>s){
23         if(s=="00")break;
24         list.push_back(s);
25     }
26     vector<string>::iterator i;
27
28     sort(list.begin(),list.end(),ace);
29     for(i=list.begin();i!=list.end();i++)cout<<(*i)<<" ";
30
31     return 0;
32 }
3.给一个字符串(aaaa(bbbb(cccc,dddd),eeee(ffff)))该字符串表明的是各个人的层次关系。
比如aaaa是bbbb和eeee的领导,bbbb是cccc和dddd的领导。现输入一个名称,
比如ffff,要求输出其领导关系输出:aaaa>eeee>ffff(哇,我竟然写了一个如此变态的逻辑,读不懂不要打我,水平有限所致)
 1 // 2011_3.cpp : Defines the entry point for the console application.
 2 //
 3
 4 #include<iostream>
 5 #include<string>
 6 #include<vector>
 7 #include<stack>
 8 using namespace std;
 9 /**
10 3.给一个字符串(aaaa(bbbb(cccc,dddd),eeee(ffff)))该字符串表明的是各个人的层次关系。
11 比如aaaa是bbbb和eeee的领导,bbbb是cccc和dddd的领导。现输入一个名称,
12 比如ffff,要求输出其领导关系输出:aaaa>eeee>ffff
13 */
14 typedef struct {
15     string data;
16     int pri;
17 }node;
18 int main(int argc, char* argv[])
19 {
20     string s;
21     vector<node> list;
22     node n;
23     stack<char> st;
24     string token;
25     cout<<"请输入字符串"<<endl;
26     cin>>s;
27     int pri=0;
28     for(int i=0;i<s.length();i++){
29         if(s[i]==‘(‘){
30             if(token.length()>0){
31                 n.data=token;
32                 n.pri=pri;
33                 list.push_back(n);
34                 //cout<<"token="<<token<<" pri"<<pri<<endl;
35                 token="";
36             }
37             pri++;
38             st.push(‘(‘);
39
40         }else if(s[i]==‘)‘){
41             if(token.length()>0){
42                 n.data=token;
43                 n.pri=pri;
44                 list.push_back(n);
45                 //cout<<"token="<<token<<" pri"<<pri<<endl;
46                 token="";
47             }
48             pri--;
49             st.pop();
50
51
52         }else if(s[i]==‘,‘){
53         if(token.length()>0){
54                 n.data=token;
55                 n.pri=pri;
56                 list.push_back(n);
57                 //cout<<"token="<<token<<" pri"<<pri<<endl;
58                 token="";
59             }
60
61         }else {
62             token+=s[i];
63         }
64     }
65     cout<<"请输入要查找的字符串"<<endl;
66     vector<node>::iterator zz;
67
68     cin>>s;
69     for(zz=list.begin();zz!=list.end();zz++){
70         if((*zz).data==s){
71             pri=(*zz).pri;
72             break;
73         }
74     }
75
76     vector<node>::iterator xx;
77     for(int j=pri-1;j>0;j--){
78         for(xx=zz;xx>=list.begin();xx--)
79             if((*xx).pri==j){
80                 s=(*xx).data+">>"+s;
81                 break;
82             }
83     }
84     cout<<s<<endl;
85     return 0;
86 }

原文地址:https://www.cnblogs.com/PPWEI/p/8453912.html

时间: 2024-10-20 01:24:11

北理工计算机复试上机 2011的相关文章

北理工计算机复试上机 2014

本人也是练习,如果有错误,欢迎指正[email protected],也可留言 1. 系统中有最近打开文件的记录,现用整数表示打开的文件名,且显示最近3个打开的文件,输出文件序列. 示例: 输入:1  输出:1 输入:2  输出:2,1 输入:3  输出:3,2,1 输入:4  输出:4,3,2 输入:1  输出:1,4,3 输入:4  输出:1,4,3 输入:3  输出:1,4,3 1 // 2014_1.cpp : Defines the entry point for the consol

北理工计算机复试上机 2013

1. 求两个数的最大公约数(似乎有个辗转相除法,为什么不用呢,没错,我不会) 示例: 输入:24,18 输出:6 1 // 2013_1.cpp : Defines the entry point for the console application. 2 // 3 #include<iostream> 4 using namespace std; 5 6 int main(int argc, char* argv[]) 7 { 8 int a,b; 9 cout<<"

北理工计算机复试上机 2012

1.输入10个数,从小到大排序 示例: 输入:1,2,5,7,9,10,45,67,24,26 输出:1,2,5,7,9,10,24,26,45,67 1 #include<iostream> 2 using namespace std; 3 int main(){ 4 5 int a[10]={0}; 6 int x=0; 7 while(x<10){ 8 cin>>a[x]; 9 x++; 10 } 11 12 for(int i=10;i>0;i--){ 13 i

北理工计算机复试上机 2010

1.输入一串整数,输入命令!要求    1.输入a t在这串整数后添加整数t.    2.输入c \m \n用n替换m.    3.输入d t删除t    4.输入s 排序 1 /** 2 1.输入一串整数,输入命令! 3 要求 4 1.输入a t在这串整数后添加整数t. 5 2.输入c \m \n用n替换m. 6 3.输入d t删除t 7 4.输入s 排序 8 */ 9 #include<iostream> 10 #include<vector> 11 #include<a

北理工计算机复试上机 2009

1.请输入字符串,最多输入4个字符串,要求后输入的字符串排在前面,例如 输入:EricZ 输出:1=EricZ 输入:David 输出:1=David 2=EricZ 1 /** 2 1.请输入字符串,最多输入4个字符串,要求后输入的字符串排在前面,例如 3 输入:EricZ 4 输出:1=EricZ 5 输入:David 6 输出:1=David 2=EricZ 7 */ 8 #include<iostream> 9 #include<list> 10 #include<s

北理工计算机复试上机 2008

1.存储一组姓名,如Apple,Tom,Green,Jack 要求能排序.按字母顺序插入.并显示. 1 /** 2 1.存储一组姓名,如Apple,Tom,Green,Jack 3 要求能排序.按字母顺序插入.并显示. 4 */ 5 #include<iostream> 6 #include<string> 7 #include<vector> 8 #include<algorithm> 9 10 using namespace std; 11 bool i

HDU 1234 (浙大计算机研究生复试上机考试-2005年) 开门人和关门人 (水)

开门人和关门人 Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 11133    Accepted Submission(s): 5667 Problem Description 每天第一个到机房的人要把门打开,最后一个离开的人要把门关好.现有一堆杂乱的机房签 到.签离记录,请根据记录找出当天开门和关门的人. Input 测试输入的第一

hdu 4416 水题 浙大计算机研究生复试上机考试-2005年 可是发现自己写代码有问题

Spring3与Hibernate4整合时出现了nested exception is java.lang.NoClassDefFoundError: Lorg/hibernate/cache/CacheProvider. hibernate3的时候,用spring来控制sessionfactory用的可以是org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean,因为用的是hibernate4所以照猫画

浙大计算机研究生复试上机考试-2010年 zoj问题

ZOJ问题 Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 2984 Accepted Submission(s): 906 Problem Description 对给定的字符串(只包含'z','o','j'三种字符),判断他是否能AC. 是否AC的规则如下: 1. zoj能AC: 2. 若字符串形式为xzojx,则也能AC,其中x可以是N