码迷,mamicode.com
首页 >  
搜索关键字:do ... while 循环    ( 74622个结果
C++ 按行输入
string s; while(getline(cin,s)){ cout<<s<<endl; } ...
分类:编程语言   时间:2021-04-06 14:01:34    阅读次数:0
归并排序模板
归并排序模板 code: #include<cstdio> #include<cstring> #include<iostream> #include<algorithm> using namespace std; const int N = 1e5 + 10; typedef long long ...
分类:编程语言   时间:2021-04-05 12:52:30    阅读次数:0
python学习第三天
一 for循环 #for循环可以循环任何序列的项目 for i in range(1,10): for j in range(1,i+1): print('%s*%s=%s'%(i,j,i*j),end="") print() 二 可变不可变类型 #for循环可以循环任何序列的项目 for i in ...
分类:编程语言   时间:2021-04-05 12:49:56    阅读次数:0
win10无法启动虚拟机
(1) 电脑没有Hyper-V pushd "%~dp0" dir /b %SystemRoot%\servicing\Packages\*Hyper-V*.mum >hyper-v.txt for /f %%i in ('findstr /i . hyper-v.txt 2^>nul') do d ...
分类:Windows程序   时间:2021-04-05 12:42:13    阅读次数:0
x进制转y进制(通用版)
#include<bits/stdc++.h> using namespace std; int main(){ char s[105]; int x,y; while(scanf("%d %d",&x,&y)!=EOF){ scanf("%s",s); int ans=0; int len=str ...
分类:其他好文   时间:2021-04-05 12:35:26    阅读次数:0
剑指 Offer 36. 二叉搜索树与双向链表
仅供自己学习 思路: 按照题目要求我们需要定义一个head头节点,并且因为树是二叉搜索树,所以要采取中序遍历才能得到从小到大的排序。 按照中序遍历的模板 dfs(root->left); cout<<root->val; dfs(root->right); 同样我们也通过这个模板写DFS,这里因为是 ...
分类:其他好文   时间:2021-04-05 12:33:29    阅读次数:0
LeetCode—数组中数字出现的次数
今天刷力扣遇到了这样的问题: 一个整型数组 nums 里除两个数字之外,其他数字都出现了两次。请写程序找出这两个只出现一次的数字。要求时间复杂度是O(n),空间复杂度是O(1)。 之前没有遇到过类似的题型,看到之后很懵,看了题解才知道要用到分组异或的方式进行分组。题解又看了十分钟才终于理解解法的含义 ...
分类:编程语言   时间:2021-04-05 12:23:52    阅读次数:0
python习题,关于python基础强化练习
基础习题 习题1 请用代码验证'name'是否在字典的键中 info = {'name': '王刚蛋', 'hobby': '铁锤', 'age': '18'} info = {'name': '王刚蛋', 'hobby': '铁锤', 'age': '18'} if info.get('name' ...
分类:编程语言   时间:2021-04-05 12:13:50    阅读次数:0
树状数组
class Sarr { public: Sarr() { memset(Bit, 0, sizeof(Bit)); } int lowbit(int pos) { return pos & (-pos); } void update(int pos, int len) { while (pos < ...
分类:编程语言   时间:2021-04-05 12:05:49    阅读次数:0
win32 API编程之常用控件
一、按钮控件 二、美化按钮 三、windows资源文件.rc 一、按钮控件 1)注意事项 创建按钮一般在WM_CREATE消息中; 系统注册的按钮类名是“button”,不区分大小写。 WS_CHILD:控件是放在我们的窗口上的,自然要作为窗口的子窗口 WS_CHILDWINDOW也一样,为了节约几 ...
分类:Windows程序   时间:2021-04-05 11:43:39    阅读次数:0
74622条   上一页 1 ... 49 50 51 52 53 ... 7463 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!