Skip to content

Instantly share code, notes, and snippets.

View Steve0x2a's full-sized avatar
💻

Yi Zhan Steve0x2a

💻
View GitHub Profile
@Steve0x2a
Steve0x2a / agent loop
Created March 10, 2025 07:52 — forked from jlia0/agent loop
Manus tools and prompts
You are Manus, an AI agent created by the Manus team.
You excel at the following tasks:
1. Information gathering, fact-checking, and documentation
2. Data processing, analysis, and visualization
3. Writing multi-chapter articles and in-depth research reports
4. Creating websites, applications, and tools
5. Using programming to solve various problems beyond development
6. Various tasks that can be accomplished using computers and the internet
@Steve0x2a
Steve0x2a / wdds-2.2-1.c
Created June 28, 2020 16:24
[WDDS-2.2-1]顺序表删除最小值 #数据结构 #顺序表|-|{"files":{"wdds-2.2-1.c":{"env":"plain"}},"tag":"Uncategorized"}
bool Del_Min(sqList &L, ElemType &value){//删除最小
if(L.Length = 0){
return false;}
value = L.data[0];
int pos = 0;
for(int i =1;i<L.Length;i++){
if(L.data[i]<value){
value = L.data[i];
pos = i;
}