码迷,mamicode.com
首页 >  
搜索关键字:humble numbers    ( 7694个结果
Webview
https://www.jianshu.com/p/3e0136c9e748 WebView WebView是android中一个非常重要的控件,它的作用是用来展示一个web页面。它使用的内核是webkit引擎,4.4版本之后,直接使用Chrome作为内置网页浏览器。 作用 显示和渲染网页; 可与页 ...
分类:Web程序   时间:2019-12-29 20:42:30    阅读次数:99
LeetCode - 两数相加(No.2)
2 两数相加 date : Dec.28th, 2019 platform : windows thinking raw method for problem solving. code ...
分类:其他好文   时间:2019-12-28 21:14:04    阅读次数:59
斗地主案例
package com.ahclg.casePoker;import java.awt.font.FontRenderContext;import java.util.ArrayList;import java.util.Collections;import java.util.HashMap;im ...
分类:其他好文   时间:2019-12-27 23:53:06    阅读次数:99
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
7694条   上一页 1 ... 45 46 47 48 49 ... 770 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!