主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
上岸课程
讨论区
兑换中心
登录
注册
上岸
以下题解仅供学习参考使用。
抄袭、复制题解,以达到刷AC率/AC数量或其他目的的行为,在N诺是严格禁止的。
N诺非常重视学术诚信。此类行为将会导致您成为作弊者。具体细则请查看N诺社区规则。
orderrr
2024年3月11日 17:39
01序列 题解:c语言求解
P1001
回复 0
|
赞 0
|
浏览 742
#include <stdio.h> #include <string.h> char s[6]; void reverse(char s[]) //翻转字符数组 { for (int i = 0; i < strlen(s) / 2; i++) { char temp = s[i]; s[i] = s[strlen(s) - i - 1]; s[strlen(s) - i - 1] = temp; } } char *toTow(int x) { ...
yczhou
2024年3月10日 21:08
01序列 题解:
P1001
回复 0
|
赞 0
|
浏览 454
#include<stdio.h> #include<math.h> int DexToBin(int n){ int a[10],cnt=0,m=0; while (n>0){//将十进制转换为二进制存储在数组中 a[cnt++]=n%2; n=n/2; } for(int i=cnt-1;i>=0;i--){//将数组中顺序颠倒的二进制数转正 m+=pow(10,i)*a[i]; } return m; } int main...
0.0@86977
2024年2月12日 17:19
利用进制转换,输出0-63的二进制
P1001
回复 0
|
赞 1
|
浏览 887
#include<bits/stdc++.h> using namespace std; int erjin(int a){ int t[6]={0}; int k=0; while(a!=0){ t[k++]=a%2; a/=2; } &nb...
猪蹄子全是肉
2023年5月2日 14:03
01序列 题解:
P1001
回复 1
|
赞 6
|
浏览 2.3k
#include <iostream> #include <vector> #include <algorithm> using namespace std; int main(){ // 遍历 0 ~ 63 这 64 个整数 for(int i=0;i<=63;i++){ // 对于每个整数 i ,遍历其二进制表示中的 6 位(因为 2^6=64) for(int j=5; j>=0; j--){ // 取出整数 i 的第 j 位二进制数...
HarryRookie
2023年11月2日 22:50
01序列 题解:
P1001
回复 1
|
赞 1
|
浏览 1.3k
评论区基本都是C/C++,这里给出一个Java的代码。 public class Main{ public static void main(String[] args){ for(int i=0;i<64;i++) System.out.println(Integer.toBinaryString(i+0b1000000).substring(1)); } } Integer.toBinaryString()方法返回的是没有前置零的二进制字符串,比如Integer.toBinaryString(4)...
Hhhhhq
2020年7月24日 11:01
(直接bitset格式化输出一行解决
P1001
回复 5
|
赞 5
|
浏览 14.1k
就是个输出0-64的二进制,直接调bitset一行解决(他不香嘛 #include<cstdio> #include<iostream> #include<bitset> using namespace std; int main(){ for(int i=0;i<64;i++){ cout<<bitset<6>(i)<<endl; } }...
天妒英才
2023年7月6日 21:50
01序列 题解:
P1001
回复 0
|
赞 1
|
浏览 1.1k
记录以下学习使用<bitset> #include <iostream> #include<bitset> using namespace std; int main() { int a=0; for(a=0;a<64;a++){ cout<<bitset<6>(a)<<endl; } } 其余常用函数: 构造函数:可以使用...
Hegel
2023年3月18日 15:20
输出所有5位二进制数
P1001
回复 0
|
赞 2
|
浏览 2.7k
#include <iostream> using namespace std; int main(){ int a[6] = {0,0,0,0,0,0}; for(int i =0;i<64;i++){ for(int j =0;j<6;j++) cout<<a[j]; cout<<endl; a[5]++; int k =5; while(a[k]==2){ a[k]=0; k--; a[k]++; } } }
huangdashuaige
2023年2月15日 21:24
P1001题解
P1001
回复 0
|
赞 2
|
浏览 3.7k
#include <iostream> using namespace std; int main( ) { //暴力解,6位数分别是0和1,进行6个for,并做流式输出 for(int a1=0;a1<=1;a1++) for(int a2=0;a2<=1;a2++) for(int a3=0;a...
max39
2022年5月12日 23:50
dfs 全排列思想 & 二进制化 两种解法
P1001
回复 2
|
赞 2
|
浏览 7.3k
#include <cstdio> using namespace std; int P[6]; void dfs(int index) { if (index == 6) { for (int i = 0; i <= 5; i++) { printf("%d", P[i]); } printf("\n"); return; } for (int i = 0; i <= 1; i++) { ...
1
2
3
4
题目
01序列
题解数量
36
发布题解
热门题解
1
P1001 - 01 序列 - C
2
我这思路适合0基础,数学思维。
3
01序列 题解:
4
(直接bitset格式化输出一行解决
5
看到题解全是一圈妖魔鬼怪,就真的忍不住了
6
dfs 全排列思想 & 二进制化 两种解法
7
输出所有5位二进制数
8
人生苦短,我用Python
9
P1001题解
10
十进制转二进制