码迷,mamicode.com
首页 >  
搜索关键字:习题    ( 6767个结果
sql 练习题
mysql练习题 1、表结构 –1.学生表 student(s_id,s_name,s_birth,s_sex) –学生编号,学生姓名, 出生年月,学生性别 –2.课程表 course(c_id,c_name,t_id) – –课程编号, 课程名称, 教师编号 –3.教师表 Teacher(t_id ...
分类:数据库   时间:2021-02-06 11:49:20    阅读次数:0
116. Populating Next Right Pointers in Each Node
仅供自己学习 题目: You are given a perfect binary tree where all leaves are on the same level, and every parent has two children. The binary tree has the foll ...
分类:其他好文   时间:2021-02-04 12:10:58    阅读次数:0
226. Invert Binary Tree
仅供自己学习 题目: Invert a binary tree. Example: Input: 4 / \ 2 7 / \ / \1 3 6 9Output: 4 / \ 7 2 / \ / \9 6 3 1 思路: 这就是直接交换数据就可以了,可以前序遍历,后序遍历,中序遍历的交换 代码: 前序 ...
分类:其他好文   时间:2021-02-04 11:44:27    阅读次数:0
练习题1
##1.从键盘上输入字符,(1)分别统计一下其中字母,数字,其他字符的个数, (2)将统计的字母,数字,其他字符的个数以柱状图的形式打印。例如 #话不多说,上代码 #include<stdio.h> #include<stdlib.h> int main() { char c; int a[3]={ ...
分类:其他好文   时间:2021-02-01 12:58:26    阅读次数:0
leetcode小白刷题之旅----6. ZigZag Conversion
仅供自己学习 题目: The string "PAYPALISHIRING" is written in a zigzag pattern on a given number of rows like this: (you may want to display this pattern in a ...
分类:其他好文   时间:2021-01-27 13:14:49    阅读次数:0
挑战程序设计竞赛 2章习题 POJ 3187 Backward Digit Sums DFS
地址 https://vjudge.net/problem/POJ-3187 题意是给你一个N(1<=N<=10) 要求将1到N的数字进行排列 然后进行杨辉三角运算 每行的数字等于上一行相同坐标和上一行相同坐标右边的两个数字之和 最后得到唯一的一个数字 现在给予N 和一个M 请问初始的N个数字该如何 ...
分类:其他好文   时间:2021-01-27 13:02:49    阅读次数:0
DFA编程练习2
题目: 请设计DFA, 使其接受全部含有奇数个1的串, 假定 ∑ = {0, 1}. 解: DFA可能出现两个个状态: qeven: 读入了偶数个1的串. qodd: 读入了奇数个1的串, 该状态也是终结状态(accept state). 它们的状态转移图如下: 编写程序, 运行效果如下: 测试用例 ...
分类:其他好文   时间:2021-01-25 11:32:58    阅读次数:0
挑战程序设计竞赛 习题 poj 3050 Hopscotch
地址 https://vjudge.net/problem/POJ-3050 The cows play the child's game of hopscotch in a non-traditional way. Instead of a linear set of numbered boxes ...
分类:其他好文   时间:2021-01-18 11:21:11    阅读次数:0
直播3-列表-字典-集合
# 随机分配老师到办公室 import random teachers = ['a', 'b', 'c', 'd', 'e'] offices = [[], [], []] for name in teachers: num = random.randint(0, 2) offices[num].a ...
分类:其他好文   时间:2021-01-11 10:41:13    阅读次数:0
直播5-实现计算器的功能
# 练习题3 # 编写函数, 实现计算器中加减乘除功能 # 例如:输入: 2+33 def computer(a, b, c): if b == "+": print(int(a) + int(c)) elif b == "-": print(int(a) - int(c)) elif b == " ...
分类:其他好文   时间:2021-01-11 10:39:55    阅读次数:0
6767条   上一页 1 ... 3 4 5 6 7 ... 677 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!