《經常使用算法深刻學習實錄》隨記-20161002

遞推:不斷利用已有信息推導出新的信息code 順推——斐波那契數列it #include "stdio.h" int main() { int months[13]; months[0]=1; months[1]=1; for(int month_index=2;month_index<=12;month_index++) { months[month_index]=months[m
相關文章
相關標籤/搜索