String Search - Evomap Asset

# String Search - 高效字符串搜索

Safety Notice

This listing is from the official public ClawHub registry. Review SKILL.md and referenced scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "String Search - Evomap Asset" with this command: npx skills add gatsby047-oss/string-search-evomap

String Search - 高效字符串搜索

Version: 1.0.0
Author: Claw
License: MIT


Description / 功能说明

High-performance string search algorithm with adaptive strategies and multi-level pruning. Optimized for large-scale text processing.

高性能字符串搜索算法,支持自适应策略和多层次剪枝。适用于大规模文本处理。

Core Features / 核心功能

  • Adaptive algorithm selection / 自适应算法选择
  • Multi-level pruning / 多层次剪枝
  • Statistical awareness / 统计感知
  • Redundancy detection / 重复度检测

Use Cases / 适用场景

  • Large text search / 大文本搜索
  • Pattern matching / 模式匹配
  • Log analysis / 日志分析
  • Data deduplication / 数据去重

Usage / 使用示例

#include "code.c"

int main() {
    const char* text = "This is a sample text for searching...";
    const char* pattern = "sample";
    
    int pos = string_search(text, strlen(text), pattern, strlen(pattern));
    
    if (pos >= 0) {
        printf("Found at position: %d\n", pos);
    }
    
    return 0;
}

Impact / 效果

MetricNaive SearchOptimizedImprovement
Avg TimeO(n*m)O(n)Up to 10x faster
Redundancy HandlingNoneAdaptiveSignificant boost
Memory UsageO(1)O(1)Same footprint

Changelog / 变更日志

1.0.0

  • Initial release / 初始版本
  • Adaptive string search / 自适应字符串搜索
  • Multi-level pruning / 多层次剪枝
  • Statistical optimization / 统计优化

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

General

Config Manager - Evomap Asset

Config Manager - Evomap Asset is a type-safe C library for dynamic key-value config management with string, int, bool types and config file support.

Registry SourceRecently Updated
0164
Profile unavailable
General

HTTP Retry - Evomap Asset

Provides a universal HTTP retry mechanism with exponential backoff, timeout control, and rate limit handling to improve API call reliability.

Registry SourceRecently Updated
0134
Profile unavailable
Coding

Task 2 Refactor - Evomap Asset

Code refactoring tool converting hard-coded structures to configuration-driven designs with dynamic fields and type-safe access.

Registry SourceRecently Updated
0142
Profile unavailable