python 改变词典顺序_按词典顺序排列的功率集

python 改变词典顺序

Description:

描述:

This is a standard interview problem to find out the power sets in lexicographic order of a given set of numbers using backtracking.

这是一个标准的面试问题,它使用回溯来按给定数字集的字典顺序查找能力集。

Problem statement:

问题陈述:

There is a set contains N no. of unsorted characters. You have to find out the power sets in lexicographic order of a given set of numbers and print them.

有一组包含N个编号。 未排序的字符。 您必须按字典顺序找出给定数字集的幂集并打印出来。

    Input:
Test case T
//T no. of line with the value of N and corresponding values.
E.g.
2
4
d c b a
2 
f u
1<=T<=100
1<=N<=1000
Output:
Print the power subsets of the set in lexicographic order.

Example

    T=2
N=4
d c b a
Output:
a
a b
a b c
a b c d
a b d
a c
a c d
a d
b
b c
b c d
b d
c
c d
d 
N=2 
f u
Output:
f
f u
u

Explanation with example

举例说明

Let, there is a Set S having N no. of numbers.

令,存在具有N no的集合S。 数字。

    S = {X1, X2, X3, ..., Xn}

The process to print the subsets of the set is a problem of combination and permutation. To get the result we use the backtracking process.

打印集合子集的过程是组合和排列的问题。 为了获得结果,我们使用了回溯过程。

First, we will have to sort the character and then we will apply our backtracking procedure.

首先,我们必须对字符进行排序,然后再应用回溯过程。

Let, f(i) = function to insert the ith number into a subset.

设f(i)=将第i 数字插入子集的函数。

Here, we take a subset of that set in our consideration and consider two things,

在这里,我们考虑一下该集合的子集,并考虑两件事,

  1. An element is a part of that subset (f(i)).

    元素是该子集( f(i) )的一部分。

  2. An element is not a part of that subset (not f(i)).

    元素不是该子集的一部分( 不是f(i) )。

For     N=3
S = {a b c}

power set in lexocographic order


Figure 1: Recursion Tree

图1:递归树

Algorithm:

算法:

Here we use the vector STL to store the subsets.

在这里,我们使用向量STL来存储子集。

    traverse(arr, n, current_pos,set,subset){
if(Current_pos is greater or equals to the n)Then
return
end if
for i= current_pos to the end of the set
insert the element of arr[i] into subset
insert the subset into the set
traverse(arr,n,i+1,set,subset)
pop the element from subset
end for
}

C++ implementation:

C ++实现:

#include <bits/stdc++.h>
using namespace std;
void traverse(char* arr, int n, int pos, vector<vector<char> >& v, vector<char> vi)
{
//if the current position is greater than or equals to n
if (pos >= n)
return;
for (int i = pos; i < n; i++) {
vi.push_back(arr[i]);
v.push_back(vi);
traverse(arr, n, i + 1, v, vi);
vi.pop_back();
}
}
vector<vector<char> > find_subset(char* arr, int n)
{
vector<vector<char> > v;
vector<char> vi;
int pos = 0;
traverse(arr, n, pos, v, vi);
return v;
}
void print(vector<vector<char> > v)
{
for (int i = 0; i < v.size(); i++) {
for (int j = 0; j < v[i].size(); j++) {
cout << v[i][j] << " ";
}
cout << endl;
}
}
int main()
{
int t;
cout << "Test Case : ";
cin >> t;
while (t--) {
int n;
cout << "Enter the value of n : ";
cin >> n;
char arr[n];
//taking the set elements
cout << "Enter the values : ";
for (int i = 0; i < n; i++) {
cin >> arr[i];
}
//sort the elements
sort(arr, arr + n);
vector<vector<char> > v = find_subset(arr, n);
//print the vector
print(v);
}
return 0;
}

Output

输出量

Test Case : 2
Enter the value of n : 4
Enter the values : d c b a
a
a b
a b c
a b c d
a b d
a c
a c d
a d
b
b c
b c d
b d
c
c d
d
Enter the value of n : 2
Enter the values : f u
f
f u
u

翻译自: https://www.includehelp.com/icp/power-set-in-lexicographic-order.aspx

python 改变词典顺序

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/540908.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

oracle创建用户名了,oracle创建用户名

创建用户//创建用户名create user username identified by password‘’//赋权限Grant Connect,Resource,DBA to UserName;plsql developer配置下载地址http://ah1.down.chinaz.com/201011/plsql8.04cn.zip右击"我的电脑" - "属性" - "高级" - &…

webpack学习笔记1

webpack学习笔记1&#xff1a;基本概念 前言&#xff1a; 现在在日常的开发中&#xff0c;webpack已经是必不可少的东西了&#xff0c;现在的需求基本都是用webpack对资源进行打包整合&#xff0c;所以打算写一点关于webpack的东西&#xff0c;这是第一篇&#xff0c;主要是介绍…

ruby 嵌套函数_Ruby嵌套有示例的循环

ruby 嵌套函数嵌套循环 (Nested for loop) Nesting of for loop means one for loop is available inside another for loop. It means that there are two loops, then the first one is an outer loop and the second one is the inner loop. Execution will take place in t…

oracle10数据库链接失败,Oracle10g出现Enterprise Manager 无法连接到数据库实例解决办法...

刚装好 10g 时&#xff0c;把的监听端口是1521&#xff0e;后来把端口改成了1568了&#xff0c;登上em发现Enterprise Manager 无法连接到数据库实例 &#xff0c;连接字符串的端口仍是1521&#xff0c;如何解决这个问题。登陆&#xff1a;出现下面错误&#xff1a;Enterprise …

springJdbc in 查询,Spring namedParameterJdbcTemplate in查询

springJdbc in 查询&#xff0c;Spring namedParameterJdbcTemplate in查询&#xff0c; SpringJdbc命名参数in查询&#xff0c;namedParameterJdbcTemplate in查询 >>>>>>>>>>>>>>>>>>>>>>>>>>…

oracle 11g r2版本号,Oracle 11g r2新增版本功能(二)

在11.2中&#xff0c;Oracle数据库引入的版本的概念&#xff0c;这为应用程序的升级提供了极大的方便。这篇简单描述版本的实现和查询方式。前一篇简单描述了版本&#xff0c;下面接着上面的例子看看Oracle是如何实现这个功能的&#xff1a;SQL> select synonym_name, table…

python 添加图例_Python | 在图例标签中添加Sigma

python 添加图例Sigma (&#x1d70e;) is very often used greek mathematical letters and has a higher repetition in probability. In this article, we are going to add &#x1d70e; using a command in matplotlib. Sigma(&#x1d70e;)是希腊数学字母中经常使用的字…

【51CTO学院】搜索V2.0——新的搜索,只为给你更好的

为了让你能快速、准确的找到自己心仪的内容&#xff0c;51CTO学院产品及研发用尽了洪荒之力研发近2个月终于将搜索进行了全面升级。 搜索看似简单&#xff0c;实则要做到精准和智能却不是件易事&#xff0c;为了让学员快速找到自己所需&#xff0c;节省找课时间&#xff0c;更高…

oracle扩容日志文件,ORACLE 加大日志文件

--新建临时日志文件alter database add logfile group 4 (‘/u01/app/oracle/oradata/orcl/redo04.log‘) size 10m;alter database add logfile group 5 (‘/u01/app/oracle/oradata/orcl/redo05.log‘) size 10m;alter database add logfile group 6 (‘/u01/app/oracle/orad…

java多线程总结(二)

线程一般有6个状态&#xff1a; 新建状态&#xff1a;NEW 可运行状态&#xff1a;RUNNABLE 休眠状态&#xff1a;TIMED_WAITING 等待状态&#xff1a;WAITING 阻塞状态:BLOCKED 终止状态“TERMINATED 当我们使用new创建线程之后&#xff0c;线程处于新建状态&#xff0c;当调用…

scandir函数_PHP scandir()函数与示例

scandir函数PHP scandir()函数 (PHP scandir() function) The full form of scandir is "Scan Directory", the function scandir() is used to get the list of the files and directories available in the specified directory. scandir的完整格式为“ Scan Direc…

韩顺平.2011最新版.玩转oracle视频教程笔记,韩顺平.2011最新版.玩转oracle视频教程(笔记)...

韩顺平.2011最新版.玩转oracle视频教程ORA-01045: user XIAOMING lacks CREATE SESSION privilege; logon denied 警告: 您不再连接到 ORACLE。 SQL> show user; USER 为 ""SQL> conn system/p; 已连接。SQL> grant connect to xiaoming; 授权成功。SQL>…

方幂序列 c+~+_C ++编程中的Trigraph序列

方幂序列 c&#xff5e;Trigraph Sequences in C are the set of three characters starting from double question marks (??). These set of the characters replaces by a single character specified in the below table, C 中的Trigraph序列是从双问号( ?? )开始的三个…

oracle sysauth,sysauth$基表的用户权限的一点分析

select privilege#,level from sysauth$ connect by grantee#prior privilege# and privilege#>0 start with grantee#:1 and privilege#>0如上的sql语句频繁执行&#xff0c;其实对于递归sql对于自己初始oracle才一年的菜鸟一般是略去不看的&#xff0c;eygle前辈们有时…

ansys 内聚力_内聚力 软件工程

ansys 内聚力凝聚 (Cohesion) In general terms, the word cohesion means the action or act of forming a united whole. According to the definition of Cambridge University, cohesion is defined as "the state of sticking together, or being in close agreement…

oracle认证都需要考哪几个方面,Oracle OCP认证要通过哪些考试

Oracle OCP认证要通过哪些考试Oracle OCP DBA认证是所有Oracle认证中最普及的一种认证&#xff0c;这一认证过程是专为那些想要从事Oracle管理的专业数据库管理人员设计的&#xff0c;适用于Oracle9I DBAs的OCP认证通过改进&#xff0c;删除了备份和恢复以及网络考试&#xff0…

左侧固定 右侧自适应三种方法

第一种&#xff1a;float 单一层浮动法 例如&#xff1a;左侧固定成100px; 则核心代码 左侧&#xff1a;width:100px;float:left; 右侧 width:auto;margin-left:100px; 实例&#xff1a; <!DOCTYPE html> <html> <head> <meta charset"utf-8&q…

ruby 集合 分组_在Ruby中打印集合的元素

ruby 集合 分组We have gone through the implementation of sets in Ruby. They are very similar to arrays. Now, let us see how we print the elements present in a set. There are no indexes present in the sets because sets are used to store the large elements. …

linux下tmp目录属性,Linux:文件夹属性及umask

回顾&#xff1a;文件在小&#xff0c;也要占用一个Block如&#xff1a;echo > a1.logls a1.log(文件大小为1k)du a1.log(文件大小也应该为1k&#xff0c;如果不是1k&#xff0c;可能selinux是打开的)du -s a1.log文件夹的权限&#xff0c;系统中的文件夹默认权限基本上都为…

python浅复制与深复制_Python中的浅复制与深复制

python浅复制与深复制In python, the assignment operator does not copy the objects, instead, they create bindings between an object and the target. The object, if a collection that is mutable or consists of mutable items uses the copy so that one can change …