九度OJ 1366(栈操作) 1367(二叉树遍历) 1368(二叉树路径) 1369(字符串全排列) 1370(特殊数字查找)

本文主要是介绍九度OJ 1366(栈操作) 1367(二叉树遍历) 1368(二叉树路径) 1369(字符串全排列) 1370(特殊数字查找),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!


1366:栈的压入、弹出序列

http://ac.jobdu.com/problem.php?pid=1366

题意

输入两个整数序列,第一个序列表示栈的压入顺序,请判断第二个序列是否为该栈的弹出顺序。

思路

根据两个数组的值,还原栈的压入弹出过程,如果能够完全还原则答案为YES。

代码

#include <stdio.h>#define N 100000int stack[N], top;void init()
{top = 0;
}int push(int key)
{if (top == N)return 0;else{stack[top++] = key;return 1;}
}int pop(int *key)
{if (top == 0)return 0;else{*key = stack[--top];return 1;}
}int Top()
{return stack[top-1];
}int main(void)
{int n, i, j;int a[N], b[N];int key;while (scanf("%d", &n) != EOF){for(i=0; i<n; i++)scanf("%d", &a[i]);for(i=0; i<n; i++)scanf("%d", &b[i]);init();i = j = 0;while (i<n && j<n){do{push(a[i]);i++;} while (i<n && top && Top() != b[j]);while (j<n && top && Top() == b[j]){pop(&key);j++;}}if (i<n || j<n)printf("No\n");elseprintf("Yes\n");}return 0;
}
/**************************************************************Problem: 1366User: liangrx06Language: CResult: AcceptedTime:200 msMemory:2012 kb
****************************************************************/

1367:二叉搜索树的后序遍历序列

http://ac.jobdu.com/problem.php?pid=1367

题意

输入一个整数数组,判断该数组是不是某二叉搜索树的后序遍历的结果。

思路

反向模拟后序遍历过程,如果没有发现矛盾则答案为YES。

代码

#include <stdio.h>
#include <string.h>#define N 10000int checkAfter(int *a, int len)
{if (len <= 1)return 1;int root = a[len-1];int i;int res;for (i=0; i<len-1; i++){if (a[i] == root)return 0;if (a[i] > root)break;}int mid = i;for (i=mid; i<len-1; i++){if (a[i] <= root)return 0;}res = checkAfter(a, mid-1);if (res == 0)return 0;res = checkAfter(a+mid, len-1-mid);if (res == 0)return 0;return 1;
}
int main(void)
{int n, i, res;int a[N];while (scanf("%d", &n) != EOF){for (i=0; i<n; i++)scanf("%d", &a[i]);res = checkAfter(a, n);if (res == 0)printf("No\n");elseprintf("Yes\n");}return 0;
}
/**************************************************************Problem: 1367User: liangrx06Language: CResult: AcceptedTime:10 msMemory:912 kb
****************************************************************/

1368:二叉树中和为某一值的路径

http://ac.jobdu.com/problem.php?pid=1368

题意

输入一颗二叉树和一个整数,打印出二叉树中结点值的和为输入整数的所有路径。路径定义为从树的根结点开始往下一直到叶结点所经过的结点形成一条路径。

思路

模拟二叉树遍历过程

代码

#include <stdio.h>#define N 10000void search(int a[N][3], int h, int k, int sum, int id[], int step)
{if (h == -1)return ;int i;sum += a[h][0];id[step] = h;step ++;if (a[h][1] == -1 && a[h][2] == -1 && k == sum){printf("A path is found:");for (i=0; i<step; i++)printf(" %d", id[i]);printf("\n");return ;}if (a[h][1] < a[h][2]){search(a, a[h][1], k, sum, id, step);search(a, a[h][2], k, sum, id, step);}else{search(a, a[h][2], k, sum, id, step);search(a, a[h][1], k, sum, id, step);}
}int main(void)
{int n, k, i;int a[N+1][3];int id[N+1];while (scanf("%d%d", &n, &k) != EOF){for (i=1; i<=n; i++)scanf("%d%d%d", &a[i][0], &a[i][1], &a[i][2]);printf("result:\n");search(a, 1, k, 0, id, 0);}return 0;
}
/**************************************************************Problem: 1368User: liangrx06Language: CResult: AcceptedTime:30 msMemory:1000 kb
****************************************************************/

1369:字符串的排列

http://ac.jobdu.com/problem.php?pid=1369

题意

输入一个字符串,按字典序打印出该字符串中字符的所有排列。

思路

DFS可解。
如果用c++有一个函数next_p****()直接能打印,具体忘记了。

代码

#include <stdio.h>
#include <stdlib.h>
#include <string.h>#define N 9 char s[N+1];
int n;void array(int begin)
{int i, j;if (begin == n-1){printf("%s\n", s);return;}char c;for (i=begin; i<n; i++){if (i>begin && s[i]==s[i-1])continue;c = s[i];for (j=i; j>begin; j--)s[j] = s[j-1];s[begin] = c;array(begin+1);c = s[begin];for (j = begin; j < i; j++)s[j] = s[j+1];s[j] = c;}
}int cmp(const void *a, const void *b)
{return *(char *)a - *(char *)b;
}int main(void)
{while (scanf("%s", s) != EOF){n = strlen(s);qsort(s, n, sizeof(s[0]), cmp);array(0);//printf("\n");}return 0;
}
/**************************************************************Problem: 1369User: liangrx06Language: CResult: AcceptedTime:120 msMemory:912 kb
****************************************************************/

1370:数组中出现次数超过一半的数字

http://ac.jobdu.com/problem.php?pid=1370

题意

数组中有一个数字出现的次数超过数组长度的一半,请找出这个数字。

思路

我用的是随机算法测试出现概率,准确度还是很高的。

代码

#include <stdio.h>
#include <time.h>
#include <stdlib.h>#define N 100000int random()
{int num;num = rand()%10;printf("%d\n", num);if(num==0)num++;return num;
}int main()
{int i, j, n;int a[N], b[100], count[100];while(scanf("%d", &n) != EOF){for (i=0; i<n; i++)scanf("%d", &a[i]);if (n == 1){printf("%d\n", a[0]);continue;}srand( (unsigned)time( NULL ) );//printf("rand() = %d\n", rand());for (i=0; i<100; ++i)b[i] = a[rand()%n];for (i=0; i<100; i++){count[i] = 0;for (j=0; j<100; j++){if (b[i] == b[j])count[i] ++;if (count[i] > 40)break;}if (count[i] > 40)break;}if (i==100 && j==100){printf("-1\n");continue;}int k=0;for (j=0; j<n; j++){if (a[j] == b[i])k ++;}if (k > n/2)printf("%d\n", b[i]);elseprintf("-1\n");}return 0;
}
/**************************************************************Problem: 1370User: liangrx06Language: CResult: AcceptedTime:50 msMemory:1236 kb
****************************************************************/

这篇关于九度OJ 1366(栈操作) 1367(二叉树遍历) 1368(二叉树路径) 1369(字符串全排列) 1370(特殊数字查找)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/868687

相关文章

从去中心化到智能化:Web3如何与AI共同塑造数字生态

在数字时代的演进中,Web3和人工智能(AI)正成为塑造未来互联网的两大核心力量。Web3的去中心化理念与AI的智能化技术,正相互交织,共同推动数字生态的变革。本文将探讨Web3与AI的融合如何改变数字世界,并展望这一新兴组合如何重塑我们的在线体验。 Web3的去中心化愿景 Web3代表了互联网的第三代发展,它基于去中心化的区块链技术,旨在创建一个开放、透明且用户主导的数字生态。不同于传统

hdu2544(单源最短路径)

模板题: //题意:求1到n的最短路径,模板题#include<iostream>#include<algorithm>#include<cstring>#include<stack>#include<queue>#include<set>#include<map>#include<stdio.h>#include<stdlib.h>#include<ctype.h>#i

usaco 1.2 Name That Number(数字字母转化)

巧妙的利用code[b[0]-'A'] 将字符ABC...Z转换为数字 需要注意的是重新开一个数组 c [ ] 存储字符串 应人为的在末尾附上 ‘ \ 0 ’ 详见代码: /*ID: who jayLANG: C++TASK: namenum*/#include<stdio.h>#include<string.h>int main(){FILE *fin = fopen (

poj 1734 (floyd求最小环并打印路径)

题意: 求图中的一个最小环,并打印路径。 解析: ans 保存最小环长度。 一直wa,最后终于找到原因,inf开太大爆掉了。。。 虽然0x3f3f3f3f用memset好用,但是还是有局限性。 代码: #include <iostream>#include <cstdio>#include <cstdlib>#include <algorithm>#incl

BUUCTF(34)特殊的 BASE64

使用pycharm时,如果想把代码撤销到之前的状态可以用 Ctrl+z 如果不小心撤销多了,可以用 Ctrl+Shift+Z 还原, 别傻傻的重新敲了 BUUCTF在线评测 (buuoj.cn) 查看字符串,想到base64的变表 这里用的c++的标准程序库中的string,头文件是#include<string> 这是base64的加密函数 std::string

leetcode105 从前序与中序遍历序列构造二叉树

根据一棵树的前序遍历与中序遍历构造二叉树。 注意: 你可以假设树中没有重复的元素。 例如,给出 前序遍历 preorder = [3,9,20,15,7]中序遍历 inorder = [9,3,15,20,7] 返回如下的二叉树: 3/ \9 20/ \15 7   class Solution {public TreeNode buildTree(int[] pr

【408DS算法题】039进阶-判断图中路径是否存在

Index 题目分析实现总结 题目 对于给定的图G,设计函数实现判断G中是否含有从start结点到stop结点的路径。 分析实现 对于图的路径的存在性判断,有两种做法:(本文的实现均基于邻接矩阵存储方式的图) 1.图的BFS BFS的思路相对比较直观——从起始结点出发进行层次遍历,遍历过程中遇到结点i就表示存在路径start->i,故只需判断每个结点i是否就是stop

Android Environment 获取的路径问题

1. 以获取 /System 路径为例 /*** Return root of the "system" partition holding the core Android OS.* Always present and mounted read-only.*/public static @NonNull File getRootDirectory() {return DIR_ANDR

每日一题|牛客竞赛|四舍五入|字符串+贪心+模拟

每日一题|四舍五入 四舍五入 心有猛虎,细嗅蔷薇。你好朋友,这里是锅巴的C\C++学习笔记,常言道,不积跬步无以至千里,希望有朝一日我们积累的滴水可以击穿顽石。 四舍五入 题目: 牛牛发明了一种新的四舍五入应用于整数,对个位四舍五入,规则如下 12345->12350 12399->12400 输入描述: 输入一个整数n(0<=n<=109 ) 输出描述: 输出一个整数

动手学深度学习【数据操作+数据预处理】

import osos.makedirs(os.path.join('.', 'data'), exist_ok=True)data_file = os.path.join('.', 'data', 'house_tiny.csv')with open(data_file, 'w') as f:f.write('NumRooms,Alley,Price\n') # 列名f.write('NA