魁梧便当

文章
4
资源
0
加入时间
2年10月17天

char * 操作

#include #include char * left(char *dst,char *src, int n){    char *p = src;    char *q = dst;    int len = strlen(src);    if(n>len) n = len;          while(n--) *(q++)

(二叉树) Falling Leaves (P1577)

就 是用最基本的方法把输入的数据一层一层地放入到二叉树中。因为没有特殊情况,直接放就OK。,,然后中序遍历输出就可以了。#include #include #include #includeusing namespace std;struct my{ char num; my *left,*right;}*go,*a,*b;char s[44][

MATLAB怎样产生一个自定义脉宽的快速高斯脉冲

function [y] = gauss_puls(t, s)% t = 1e-6;%脉宽% b = t/2;%对称轴% s = 10e6;%决定胖瘦b = t / 2;x = linspace(0, t, 1000);%决定采样率y = exp(-((x - b) / 2 * s) .^ 2);% plot(x * 1e6, y);% xlabel('time in u sec');% title('guass pulse');...