代码语言
.
CSharp
.
JS
Java
Asp.Net
C
MSSQL
PHP
Css
PLSQL
Python
Shell
EBS
ASP
Perl
ObjC
VB.Net
VBS
MYSQL
GO
Delphi
AS
DB2
Domino
Rails
ActionScript
Scala
代码分类
文件
系统
字符串
数据库
网络相关
图形/GUI
多媒体
算法
游戏
Jquery
Extjs
Android
HTML5
菜单
网页交互
WinForm
控件
企业应用
安全与加密
脚本/批处理
开放平台
其它
【
C
】
从字典中找出所有变位词集合
作者:
songlee
/ 发布于
2014/6/9
/
583
假设有一个4万单词的字典,从其中找出所有变位词集。(变位词指的是一个单词可以通过改变其他单词中字母的顺序来得到,也叫做兄弟单词,如army->mary)
/************************************************************************* > File Name: test5.cpp > Author: SongLee > E-mail: lisong.shine@qq.com > Created Time: 2014年06月05日 星期四 20时04分50秒 > Personal Blog: http://songlee24.github.io ************************************************************************/ #include<iostream> #include<fstream> // file I/O #include<map> // map #include<string> // string #include<algorithm> // sort using namespace std; /* *map是C++中的关联容器 * 按关键字有序 * 关键字不可重复 */ map<string, string> word; /* 自定义比较函数(用于排序) */ bool myfunction(char i, char j) { return i < j; } /* *对每个单词排序 *排序后字符串作为关键字,原单词作为值 *存入map中 */ void sign_sort(const char* dic) { // 文件流 ifstream in(dic); if(!in) { cout << "Couldn't open file: " + string(dic) << endl; return; } string aword; string asign; while(in >> aword) { asign = aword; sort(asign.begin(), asign.end(), myfunction); // 若标识不存在,创建一个新map元素,若存在,加在值后面 word[asign] += aword + " "; } in.close(); } /* *写入输出文件 */ void write_file(const char* file) { ofstream out(file); if(!out) { cout << "Couldn't create file: " + string(file) << endl; return; } map<string, string>::iterator begin = word.begin(); map<string, string>::iterator end = word.end(); while(begin != end) { out << begin->second << "\n"; ++begin; } out.close(); } int main() { string dic; string outfile; cout << "Please input dictionary name: "; cin >> dic; cout << "Please input output filename: "; cin >> outfile; sign_sort(dic.c_str()); write_file(outfile.c_str()); return 0; }
试试其它关键字
变位词
集合
同语言下
.
获取手机通讯录 iOS去除数字以外的所有字符
.
异步加载音乐等资源
.
交通罚单管理系统
.
freemark实现,简单的替换
.
计算斐波那契数列
.
base64解码 包括解码长度
.
图像显示
.
冒泡排序
.
输入十进制数,输出指定进制
.
链式栈
可能有用的
.
C#实现的html内容截取
.
List 切割成几份 工具类
.
SQL查询 多列合并成一行用逗号隔开
.
一行一行读取txt的内容
.
C#动态修改文件夹名称(FSO实现,不移动文件)
.
c# 移动文件或文件夹
.
c#图片添加水印
.
Java PDF转换成图片并输出给前台展示
.
网站后台修改图片尺寸代码
.
处理大图片在缩略图时的展示
songlee
贡献的其它代码
(
3
)
.
隐藏或显示工具栏
.
各种内部排序算法的实现
.
从字典中找出所有变位词集合
Copyright © 2004 - 2024 dezai.cn. All Rights Reserved
站长博客
粤ICP备13059550号-3