javascript: void(function(d) { var objDiv = null; var intMid = 0; var RunMyJs = function(){ var size = $('div .WB_cardwrap').size(); if (size == 0) re ...
分类:
其他好文 时间:
2020-06-23 17:08:51
阅读次数:
42
#ifdef _WIN32 由编译器(ml.exe/ml64.exe)内部定义的。具体描述是: _WIN32:Defined for applications for Win32 and Win64. Always defined. _WIN64:Defined for applications f ...
分类:
其他好文 时间:
2020-06-23 13:19:47
阅读次数:
53
一、51系列单片机与PC端串口调试助手互相进行串口通信的单片机C语言程序 #include <reg52.h> #define uchar unsigned char #define uint unsigned int unsigned char flag,a,i; uchar code table ...
分类:
其他好文 时间:
2020-06-22 19:26:48
阅读次数:
137
题目如下: Given an integer n and an integer start. Define an array nums where nums[i] = start + 2*i (0-indexed) and n == nums.length. Return the bitwise X ...
分类:
其他好文 时间:
2020-06-22 15:49:58
阅读次数:
98
1.顺序表实现栈 #include<iostream> #define MaxSize 50 using namespace std; int push(int a[],int &top){ if(top==MaxSize){ return 0; } int value; cin>>value; a ...
分类:
其他好文 时间:
2020-06-22 14:39:49
阅读次数:
95
在STM32中有几种复位方式:1、Rest按键复位,2、看门狗复位。3、软件复位。对于前两种复位机制,后期再做补充,此处重点介绍软件复位。 三、因近期做个东西需要系统通过上位机指令复位,因此需添加复位函数。函数具体实现如下: 1、在stm32f4xx.h中添加(在其他地方添加也可): #define ...
分类:
其他好文 时间:
2020-06-22 12:30:33
阅读次数:
162
Blob.js: /* eslint-disable */ /* Blob.js * A Blob implementation. * 2014-05-27 * * By Eli Grey, http://eligrey.com * By Devin Samarin, https://github. ...
分类:
其他好文 时间:
2020-06-22 12:21:56
阅读次数:
51
#include <iostream> #include <cstdio> #include <cstring> #include <cmath> #define N 2000005 using namespace std; const int inf=(1 << 28); int n,m,S,T, ...
分类:
其他好文 时间:
2020-06-21 23:18:17
阅读次数:
52
#include <iostream> #include <cstdio> #include <cstring> #include <cmath> #define N 2000005 using namespace std; const int inf=1000000007; int n,m,S,T ...
分类:
其他好文 时间:
2020-06-21 20:13:22
阅读次数:
46
周赛地址(英):Weekly Contest 194 周赛地址(中):第 194 场周赛 仓库地址:week-Leetcode 1486. XOR Operation in an Array Given an integer n and an integer start. Define an arr ...
分类:
其他好文 时间:
2020-06-21 19:54:59
阅读次数:
61