SQLite Database 自定义函数实现: //Here's how to create a function that finds the first character of a string. static void firstchar(sqlite3_context *context, int argc, sqlite3_value **argv) { ) { ]); ]) { ]; result[] = text[]; result[] = '\0'; sqlite3_resul…
案例二:冒泡排序 lt1=[45,12,56,-32,-3,44,75,-22,100] print('排序前:'+str(lt1)) 自定义函数:实现冒泡排序(升序)原则:1).有没有形参?有,接受一个列表对象 2).有没有返回值?没有,排完就排完 def bubbleSort(lt): length=len(lt) for i in range(length-1): for j in range(length-1-i): if lt[j]>lt[j+1]: lt[j],lt[j+1]=lt[…