-
[置顶]小程序引擎(开源小程序引擎)
本文目录一览:1、做一个小程序需要具备什么技术?2、企业是否需要制作小程序?怎么做企业小程序?3、taro 怎么集成 android sdk?4、百度小程序有什么特点?5、qq小程序基础引擎加载失败怎...
-
-
-
-
螺旋队列
螺旋队列#include#includeusing namespace std;#define abs(a) ((a)˃0?(a):-(a))#define max(a,b) ((a)0&&x˃=y)...
-
leeetcode283. Move Zeroes
leeetcode283. Move Zeroesclass Solution {public: void moveZeroes(vector& nums) { int n=num...
-
华为笔试题
华为笔试题求两个树的二进制位不同的个数。#includeusing namespace std;int func(long long x){ int countx = 0; while(x...
-
2017年8月30日23:43:42
2017年8月30日23:43:422017年8月30日23:43:44多一些不为为什么的坚持,这是考验时听朱伟恋恋有词记住的。最近我日志,快变成了周志,坚持真的不易。今晚跟师兄做笔试,然后去吃夜宵。...
-
258. Add Digits
258. Add Digits一看不让用循环就有点蒙。只能找规律。和9相关。class Solution {public: int addDigits(int num) {...
-
leetcode371. Sum of Two Integers
leetcode371. Sum of Two Integers这题挺有意思不用+-算+法先&:求出需要进位的位后^:求出除了进位的结果然后:把进位的那位左移,用上面的结果再去+进位后的结果。clas...
-
[挑战程序设计]POJ2386
[挑战程序设计]POJ2386深度优先便利:给定整数a1到an,选出若干数和为k。思路是判断每个数加或者不加,然后深度搜下去。int a[MAX_N];int n,k;bool dfs(int i,i...