摘要: 二叉树: #include <bits/stdc++.h> using namespace std; int main(){ int n,sum=0; cin>>n; for(int i=1;i<=n;i*=2){ sum++; } cout<<sum; } 冒泡排序: #include <bits 阅读全文
posted @ 2024-09-15 15:57 fushuxuan1 阅读(26) 评论(0) 推荐(0)