shell编程入门简介 shell是用户与linux操作系统之间沟通的桥梁,用户可以输入命令执行,又可以利用shell脚本去运行 shell种类非常多,常见的shell如下: bourne shell(/usr/bin/sh或/bin/bash) bourne again shell(/bin/ba ...
分类:
系统相关 时间:
2019-11-10 14:03:39
阅读次数:
98
原题链接在这里:https://leetcode.com/problems/split-array-into-fibonacci-sequence/ 题目: Given a string S of digits, such as S = "123456579", we can split it in ...
分类:
其他好文 时间:
2019-11-10 13:42:47
阅读次数:
78
keil调试的时候告警This target device does not support all the defined breakpoints! Please reduce the number of breakpoints and start again. “此目标设备不支持所有定义的断点请 ...
分类:
其他好文 时间:
2019-11-07 10:08:04
阅读次数:
173
题目概要 题目描述 给一个数$k$,问最少可以用几个斐波那契数加加减减凑出来 例如 $$ 10=5+5 \\\\ 19=21 2 \\\\ 17=13+5 1 \\\\ 1070=987+89 5 1 \\\\ $$ 样例输入 样例输出 数据范围 $$ k \le 10^{17} $$ 多组数据,不 ...
分类:
其他好文 时间:
2019-11-07 09:36:52
阅读次数:
55
__ "Codeforces Round 590 (Div. 3)" __ __ "A. Equalize Prices Again" __ __思路:水题__ AC代码 ...
分类:
其他好文 时间:
2019-11-05 21:17:04
阅读次数:
105
code: #include <bits/stdc++.h> #define N 400004 #define LL long long #define lson now<<1 #define rson now<<1|1 #define setIO(s) freopen(s".in","r",std ...
分类:
其他好文 时间:
2019-11-05 15:03:42
阅读次数:
64
``` public class FibonacciSeries { //Realizing Fibonacci number recursively public static long fibonacci(long number) { if (number == 0 || number == 1 ...
分类:
其他好文 时间:
2019-10-31 00:53:35
阅读次数:
92
本题要求编写程序,利用数组计算菲波那契(Fibonacci)数列的前N项,每行输出5个,题目保证计算结果在长整型范围内。Fibonacci数列就是满足任一项数字是前两项的和(最开始两项均定义为1)的数列,例如::1,1,2,3,5,8,13,...。 输入格式: 输入在一行中给出一个整数N(1)。 ...
分类:
编程语言 时间:
2019-10-28 21:03:13
阅读次数:
303
坑爹微软Sucks Again. assimp 终于更新到了5.0.0并且支持GLTF2格式,包含动画正确解析,在viewer中也能看到正确结果,真他喵的不容易,然后拿来编译完到自己项目里用,就出这玩意了,神奇的是编译他自己的viewer就没问题? 不管那么多,百度一下说是std::min之类的问题 ...
分类:
其他好文 时间:
2019-10-27 15:00:53
阅读次数:
125
接触python有一段时间了,从开始的看菜鸟的python教程,看了一些视频,一些书。很多人感觉python很简单,确实相比其他语言,python可能稍微简单一点,但是不能说只学了python基础语法就说自己python水平可以了。最近在阅读YOLOv3的pytorch版本源码,就遇到很多瓶颈,很多... ...
分类:
编程语言 时间:
2019-10-22 22:18:02
阅读次数:
123