上一页 1 ··· 16 17 18 19 20 21 22 23 24 ··· 29 下一页
摘要: 2019-02-01 Day10: Python种类: JavaPython:...转换为java解释器.. cPython:Python字节码转换为c解释器 的机器码(平时用) pypy:Python字节码直接转换为机器码 字节码和机器码 Python程序:是由C语言大师写的,自己带有内存申请和释 阅读全文
posted @ 2019-12-27 11:25 JasonPeng1 阅读(168) 评论(0) 推荐(0)
摘要: 2019-12-27 11:21:54 解法1:DFS 递归遍历 参考:https://leetcode-cn.com/problems/populating-next-right-pointers-in-each-node-ii/solution/c-o1kong-jian-jian-ji-di- 阅读全文
posted @ 2019-12-27 11:24 JasonPeng1 阅读(224) 评论(0) 推荐(0)
摘要: 2019-12-27 08:52:23 解法1:DFS 递归解决 /* // Definition for a Node. class Node { public: int val; Node* left; Node* right; Node* next; Node() : val(0), left 阅读全文
posted @ 2019-12-27 08:54 JasonPeng1 阅读(190) 评论(0) 推荐(0)
摘要: 2019-12-24 14:37:16 #include <bits/stdc++.h> #include<math.h> using namespace std; const int MAX_LEN = 1004; struct Student{ long long number;//学号 int 阅读全文
posted @ 2019-12-24 14:39 JasonPeng1 阅读(180) 评论(0) 推荐(0)
摘要: 2019-12-23 14:54:40 #include <bits/stdc++.h> #include<math.h> using namespace std; const int MAX_LEN = 2004; int main(){ double temp1[MAX_LEN]={0}; do 阅读全文
posted @ 2019-12-23 14:56 JasonPeng1 阅读(175) 评论(0) 推荐(0)
摘要: 2019-12-21 14:29:21 #include <bits/stdc++.h> #include<math.h> using namespace std; const int MAX_LEN = 10001; int main(){ /*//A多项式,B多项式: vector<int,do 阅读全文
posted @ 2019-12-21 14:30 JasonPeng1 阅读(186) 评论(0) 推荐(0)
摘要: 2019-12-20 09:38:48 What The Fuck? 只通过一个样例? scanf("%d",&t)!=EOF这句很重要! #include <bits/stdc++.h> #include<math.h> using namespace std; const int MAX_LEN 阅读全文
posted @ 2019-12-20 09:52 JasonPeng1 阅读(233) 评论(0) 推荐(0)
摘要: 2019-12-18 21:31:22 注意需要用变量单独来记录 a + b的值,和正溢出和负溢出的情况。 #include <bits/stdc++.h> #include<math.h> using namespace std; const int MAXN = 100005; int main 阅读全文
posted @ 2019-12-18 21:33 JasonPeng1 阅读(256) 评论(0) 推荐(0)
摘要: 小程序开发语言 wxml语法 wxss语法 js语法 wxml语法 WXML(WeiXin Markup Language),它与HTML有很多相似之处。它是框架设计的一套标签语言,结合基础组件、事件系统,可以构建出页面的结构。 什么是组件: 组件是视图层的基本组成单元 组件自带一些功能与微信风格的 阅读全文
posted @ 2019-12-18 11:38 JasonPeng1 阅读(498) 评论(0) 推荐(0)
摘要: 2019-12-18 10:59:48 app.json app.json是全局配置文件,我们进入到app.json看一下。 pages 试着对pages进行一些修改,进行编译 可以看到pages下面多了一个test目录。 实际上,pages接受一个数组,每一项都是字符串,来指定小程序由哪些页面组成 阅读全文
posted @ 2019-12-18 11:00 JasonPeng1 阅读(513) 评论(0) 推荐(0)
上一页 1 ··· 16 17 18 19 20 21 22 23 24 ··· 29 下一页