码迷,mamicode.com
首页 >  
搜索关键字:consecutive numbers    ( 8082个结果
Matrix in Houdini
Matrix in houdini is still just a collection of numbers, the only different is :How you apply this data determines what kind of matrix it is. There is ...
分类:其他好文   时间:2019-12-27 18:09:05    阅读次数:90
【计蒜课】【数据结构】【栈的复习】
#include <stdio.h> #include <stdlib.h> #include <ctype.h> #define ERROR 0 #define OK 1 typedef struct Stack { int *elements; int max_size, top_index; ...
分类:其他好文   时间:2019-12-27 13:19:25    阅读次数:64
Linux 实时性能测试工具——Cyclictest 的使用与分析【转】
转自:https://blog.csdn.net/lu_embedded/article/details/53486545 关于Cyclictest工具,在Wiki上有说明:https://rt.wiki.kernel.org/index.php/Cyclictest。下面将对Wiki上的部分说明进 ...
分类:系统相关   时间:2019-12-27 11:53:26    阅读次数:125
给vue添加一个超级好用的富文本编辑器 markdown
用过百度富文本编辑器ueditor,还用过Ttinymce编辑器,都感觉很一般,最近看到一个超级好用的富文本,除了普通富文本的这些功能,还可以直接在编辑器上输入代码来写页面。左边写内容,右边看效果,也就是相当于可视化编辑器。 好了,废话不多说,直接开始吧。 首先第一步肯定是安装了: 命令行工具输入: ...
分类:其他好文   时间:2019-12-26 13:35:31    阅读次数:217
指针变量:输入a和b两个整数,按先大后小的顺序输出a和b。
#include <stdio.h>int main() { int *p1,*p2,*p,a,b; printf("please enter two integer numbers:"); scanf("%d,%d",&a,&b); // 输入两个整数 p1=&a; // 使p1指向变量a p2= ...
分类:其他好文   时间:2019-12-26 13:34:29    阅读次数:972
leetcode-168周赛-1295-统计位数为偶数的数字
题目描述: 方法一:O(N) class Solution: def findNumbers(self, nums: List[int]) -> int: ans=0 for num in nums: if len(str(num))%2==0: ans+=1 return ans 方法二:数学 O ...
分类:其他好文   时间:2019-12-25 20:43:12    阅读次数:85
java 求两个数最大值
//find greatest among two numbers import java.util.Scanner; public class Numbers { public static void main(String[] args) { int num1, num2; Scanner ip... ...
分类:编程语言   时间:2019-12-25 12:58:36    阅读次数:364
[Algorithm] 728. Self Dividing Numbers
A self-dividing number is a number that is divisible by every digit it contains. For example, 128 is a self-dividing number because 128 % 1 == 0, 128 ...
分类:其他好文   时间:2019-12-24 17:05:35    阅读次数:90
Good Numbers
进制 #include<iostream> #include<math.h> #define ll long long using namespace std; ll r,store[100010]; void pp(ll n) { r=0; while(n!=0){ store[r++]=n%3; ...
分类:其他好文   时间:2019-12-22 18:49:53    阅读次数:80
JS高程中的垃圾回收机制与常见内存泄露的解决方法
起因是因为想了解闭包的内存泄露机制,然后想起《js高级程序设计》中有关于垃圾回收机制的解析,之前没有很懂,过一年回头再看就懂了,写篇博客与大家分享一下。 #内存的生命周期: 分配你所需要的内存: 由于字符串、对象等没有固定的大小,js程序在每次创建字符串、对象的时候,程序都会分配内存来存储那个实体。 ...
分类:Web程序   时间:2019-12-22 14:34:05    阅读次数:101
8082条   上一页 1 ... 48 49 50 51 52 ... 809 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!