938664978
938664978
全部文章
分类
AI(18)
algorithm(18)
C(6)
computer-vision(15)
cuda(2)
database(1)
fortran(1)
hardware(3)
java(1)
leetcode(39)
MathModeling(19)
matlab(5)
other(8)
python(68)
robotics(13)
web-development(4)
未归档(5)
归档
标签
去牛客网
登录
/
注册
938664978的博客
全部文章
(共226篇)
mergesort in python
def mergesort(List): """ input : List, an integer list output : an sorted integer list """ n = len(L...
2020-07-14
0
408
check_sudoku
# Define a procedure, check_sudoku, # that takes as input a square list # of lists representing an n x n # sudoku puzzle solution and returns the bool...
2020-07-14
0
518
SOR
MODULE Global_data !Symbolic names for kind types of single- and double-precision reals: INTEGER, PARAMETER :: SP = KIND(1.0) INTEGER, PARAMET...
2020-07-14
0
473
RK4
MODULE Global_data !Symbolic names for kind types of single- and double-precision reals: INTEGER, PARAMETER :: SP = KIND(1.0) INTEGER, PARAMET...
2020-07-14
0
624
abacus
######################################################################### # 10-row School abacus # by # ...
2020-07-14
0
511
count_inversions in an integer list
count = 0 def merge_sort(li): if len(li) < 2: return li m = len(li) / 2 return merge(merge_sort(li[:m]), merge_sort(li[m:])) def ...
2020-07-14
0
477
[note]Linear Programming
# solves *bounded* LPs of the form: # max cx # sub to: Ax <= b from sympy import * from itertools import combinations #...
2020-07-14
0
529
Python 中 input()用法 以及与raw_input() 的区别
input(xxxxxx) 其中xxxxxx是str 类,所以当你输入input(' please input a number: ') 时,屏幕会弹出 “please input a number:" input('please input a number:')其输出为: p...
2020-07-14
0
672
C语言练习-1类型转换
#include <stdio.h> int main() { int a = 5; char c = 'a'; float f = 5.3; double m = 12.65; double result; printf("a...
2020-07-14
0
502
C语言练习-2转义字符
#include <stdio.h> int main() { printf("how are u?\n");// 回车 printf("i am fine.\n\n"); printf("how are u? ...
2020-07-14
0
444
首页
上一页
1
2
3
4
5
6
7
8
9
10
下一页
末页