码迷,mamicode.com
首页 >  
搜索关键字:visual stdio    ( 19543个结果
C语言-数据类型-整型
#include <stdio.h> int main (void) { signed short int a1;//有符号short unsigned short int a2;//无符号short signed int b1; unsigned int b2; signed long int c ...
分类:编程语言   时间:2021-05-24 08:09:05    阅读次数:0
将两个不同类的多个对象序列化到文件
1 #include<stdio.h> 2 #include<iostream> 3 #include<fcntl.h> 4 #include<sys/types.h> 5 #include<sys/stat.h> 6 #include<vector> 7 #include <unistd.h> 8 ...
分类:其他好文   时间:2021-05-24 07:50:30    阅读次数:0
win10 uwp 使用 XamlTreeDump 获取 XAML 树元素内容
本文来安利大家 XamlTreeDump 库,通过这个库可以将 XAML 树上的元素转换为 json 字符串,可以用来进行 UI 单元测试 ...
分类:Windows程序   时间:2021-05-24 03:59:15    阅读次数:0
POJ1149 - PIGS - 网络流最大流 - 构图
##AC代码 #include<stdio.h> #include<string.h> #include<iostream> #include<queue> using namespace std; #define inf 0x3f3f3f3f const int N=1020; int e[N][ ...
分类:其他好文   时间:2021-05-24 03:46:14    阅读次数:0
VS Code常用快捷键查询表
Windows平台VS Code常用快捷键查询表 具体说明及原文件获取链接: Visual Studio Code Tips and Tricks ...
分类:其他好文   时间:2021-05-24 01:52:58    阅读次数:0
二叉树的基本操作【C语言】
数据结构二叉树的基本操作设计#include <conio.h> #include <stdio.h> #include <stdlib.h> #include <math.h> #define MAXLEN 100 #define NLAYER 4 typedef struct BiTNode / ...
分类:编程语言   时间:2021-05-24 01:40:53    阅读次数:0
vscode配置Microsoft C++注意事项
vscode配置c++插件教程链接如下: https://code.visualstudio.com/docs/cpp/config-msvc#_check-your-microsoft-visual-c-installation 必须有工作空间 有工作空间/workspace才能有配置文件。否则配 ...
分类:编程语言   时间:2021-05-24 00:18:33    阅读次数:0
shiyansi
#include <stdio.h> #include <stdlib.h> #define N 1000 int fun(int n,int m,int bb[N]) { int i,j,k=0,flag; for(j=n;j<=m;j++) { flag= 1; for(i=2;i<j;i++) ...
分类:其他好文   时间:2021-05-24 00:15:41    阅读次数:0
简化版由前序遍历和中序遍历返回后序遍历
#include<iostream> #include<cstring> #include<string> #include<stdio.h> using namespace std; void print(int n,char *x,char *y) { if(n<=0) return; int ...
分类:其他好文   时间:2021-05-23 23:32:39    阅读次数:0
数据结构--单链表 C语言
//单链表基本操作 1 #include <stdio.h> 2 3 #include <stdlib.h> 4 5 6 typedef struct _NODE 7 { 8 int data; 9 struct _NODE *pNext; 10 }NODE,*PNODE; 11 12 PNODE ...
分类:编程语言   时间:2021-05-23 22:56:58    阅读次数:0
19543条   上一页 1 ... 13 14 15 16 17 ... 1955 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!